lower bound detection fix on Hyperliquid (#677)

This commit is contained in:
Andrey Bronin
2025-06-25 11:50:54 +03:00
committed by GitHub
parent a435ca72d9
commit 17a0a202c2
3 changed files with 3 additions and 0 deletions

View File

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

View File

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

View File

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