lower bound detection fix on Hyperliquid (#677)
This commit is contained in:
@@ -27,6 +27,7 @@ class EthereumLowerBoundBlockDetector(
|
|||||||
"Block with such an ID is pruned", // zksync
|
"Block with such an ID is pruned", // zksync
|
||||||
"height is not available", // sei
|
"height is not available", // sei
|
||||||
"method handler crashed", // sei
|
"method handler crashed", // sei
|
||||||
|
"Unexpected error", // hyperliquid
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ class EthereumLowerBoundReceiptsDetector(
|
|||||||
"requested epoch was a null round",
|
"requested epoch was a null round",
|
||||||
"missing trie node",
|
"missing trie node",
|
||||||
"old data not available due to pruning",
|
"old data not available due to pruning",
|
||||||
|
"Unexpected error", // hyperliquid
|
||||||
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
|
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ class EthereumLowerBoundTxDetector(
|
|||||||
|
|
||||||
private val NO_TX_ERRORS = setOf(
|
private val NO_TX_ERRORS = setOf(
|
||||||
NO_TX_DATA,
|
NO_TX_DATA,
|
||||||
|
"Unexpected error", // hyperliquid
|
||||||
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
|
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user