mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-19 05:25:11 +01:00
Make 'maxHeightQuery' vals inside of BlockHeaderDAO, CompactFilterHeaderDAO, CompactFilterDAO (#1325)
This commit is contained in:
parent
27dbefd2af
commit
efaf457d6a
3 changed files with 3 additions and 3 deletions
|
@ -191,7 +191,7 @@ case class BlockHeaderDAO()(
|
||||||
result
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
private def maxHeightQuery: SQLiteProfile.ProfileAction[
|
private val maxHeightQuery: SQLiteProfile.ProfileAction[
|
||||||
Int,
|
Int,
|
||||||
NoStream,
|
NoStream,
|
||||||
Effect.Read] = {
|
Effect.Read] = {
|
||||||
|
|
|
@ -64,7 +64,7 @@ case class CompactFilterDAO()(
|
||||||
result
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
private def maxHeightQuery: SQLiteProfile.ProfileAction[
|
private val maxHeightQuery: SQLiteProfile.ProfileAction[
|
||||||
Int,
|
Int,
|
||||||
NoStream,
|
NoStream,
|
||||||
Effect.Read] = {
|
Effect.Read] = {
|
||||||
|
|
|
@ -76,7 +76,7 @@ case class CompactFilterHeaderDAO()(
|
||||||
result
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
private def maxHeightQuery: SQLiteProfile.ProfileAction[
|
private val maxHeightQuery: SQLiteProfile.ProfileAction[
|
||||||
Int,
|
Int,
|
||||||
NoStream,
|
NoStream,
|
||||||
Effect.Read] = {
|
Effect.Read] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue