New state error, fix near lower bound (#591)
This commit is contained in:
@@ -25,6 +25,7 @@ class EthereumLowerBoundBlockDetector(
|
||||
private val NO_BLOCK_ERRORS = listOf(
|
||||
"error loading messages for tipset",
|
||||
"bad tipset height",
|
||||
"Block with such an ID is pruned", // zksync
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -47,6 +47,7 @@ class EthereumLowerBoundStateDetector(
|
||||
"Block with such an ID is pruned", // zksync
|
||||
"state at block", // berachain, eth
|
||||
"unsupported block number", // arb
|
||||
"unexpected state root", // fantom
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -36,6 +36,6 @@ class NearLowerBoundStateDetector(
|
||||
}
|
||||
|
||||
override fun types(): Set<LowerBoundType> {
|
||||
return setOf(LowerBoundType.STATE)
|
||||
return setOf(LowerBoundType.STATE, LowerBoundType.BLOCK)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user