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