Reduce lower bound interval (#458)

This commit is contained in:
KirillPamPam
2024-04-22 14:12:49 +04:00
committed by GitHub
parent 72dcedc38e
commit c47057de84
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ class EthereumLowerBoundBlockDetector(
private val recursiveLowerBound = RecursiveLowerBound(upstream, LowerBoundType.BLOCK, setOf("No block data")) private val recursiveLowerBound = RecursiveLowerBound(upstream, LowerBoundType.BLOCK, setOf("No block data"))
override fun period(): Long { override fun period(): Long {
return 5 return 3
} }
override fun internalDetectLowerBound(): Flux<LowerBoundData> { override fun internalDetectLowerBound(): Flux<LowerBoundData> {

View File

@@ -45,7 +45,7 @@ class EthereumLowerBoundStateDetector(
} }
override fun period(): Long { override fun period(): Long {
return 5 return 3
} }
override fun internalDetectLowerBound(): Flux<LowerBoundData> { override fun internalDetectLowerBound(): Flux<LowerBoundData> {