Fix optimism state bound (#752)
This commit is contained in:
@@ -32,7 +32,19 @@ class EthereumLowerBoundProofDetector(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val recursiveLowerBound = RecursiveLowerBound(upstream, LowerBoundType.PROOF, NO_PROOF_ERRORS, lowerBounds, commonErrorPatterns)
|
private val recursiveLowerBound = RecursiveLowerBound(
|
||||||
|
upstream,
|
||||||
|
LowerBoundType.PROOF,
|
||||||
|
NO_PROOF_ERRORS,
|
||||||
|
lowerBounds,
|
||||||
|
commonErrorPatterns.plus(
|
||||||
|
setOf(
|
||||||
|
Regex("block #\\d not found"),
|
||||||
|
Regex("state at block #\\d is pruned"),
|
||||||
|
Regex("historical state .+ is not available"),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
override fun period(): Long {
|
override fun period(): Long {
|
||||||
return 3
|
return 3
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ class EthereumLowerBoundStateDetector(
|
|||||||
setOf(
|
setOf(
|
||||||
Regex("block #\\d not found"),
|
Regex("block #\\d not found"),
|
||||||
Regex("state at block #\\d is pruned"),
|
Regex("state at block #\\d is pruned"),
|
||||||
|
Regex("historical state .+ is not available"),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user