Skip to content

Commit

Permalink
Reduce lower bound interval (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillPamPam authored Apr 22, 2024
1 parent 72dcedc commit c47057d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class EthereumLowerBoundBlockDetector(
private val recursiveLowerBound = RecursiveLowerBound(upstream, LowerBoundType.BLOCK, setOf("No block data"))

override fun period(): Long {
return 5
return 3
}

override fun internalDetectLowerBound(): Flux<LowerBoundData> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class EthereumLowerBoundStateDetector(
}

override fun period(): Long {
return 5
return 3
}

override fun internalDetectLowerBound(): Flux<LowerBoundData> {
Expand Down

0 comments on commit c47057d

Please sign in to comment.