New state error, fix near lower bound (#591)

This commit is contained in:
KirillPamPam
2024-11-06 18:41:52 +04:00
committed by GitHub
parent b8f87941a5
commit b9b8e68fdb
4 changed files with 4 additions and 2 deletions

View File

@@ -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
)
}

View File

@@ -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
)
}

View File

@@ -36,6 +36,6 @@ class NearLowerBoundStateDetector(
}
override fun types(): Set<LowerBoundType> {
return setOf(LowerBoundType.STATE)
return setOf(LowerBoundType.STATE, LowerBoundType.BLOCK)
}
}