hyperliquid evm lower bounds detection fixed (#711)
This commit is contained in:
@@ -27,6 +27,7 @@ class EthereumLowerBoundBlockDetector(
|
|||||||
"height is not available", // sei
|
"height is not available", // sei
|
||||||
"method handler crashed", // sei
|
"method handler crashed", // sei
|
||||||
"Unexpected error", // hyperliquid
|
"Unexpected error", // hyperliquid
|
||||||
|
"invalid block height", // hyperliquid
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ class EthereumLowerBoundProofDetector(
|
|||||||
"old data not available due to pruning",
|
"old data not available due to pruning",
|
||||||
"no historical RPC is available",
|
"no historical RPC is available",
|
||||||
"Method not found", // Monad error bc they don't have eth_getProofs
|
"Method not found", // Monad error bc they don't have eth_getProofs
|
||||||
|
"invalid block height", // hyperliquid
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ class EthereumLowerBoundReceiptsDetector(
|
|||||||
"missing trie node",
|
"missing trie node",
|
||||||
"old data not available due to pruning",
|
"old data not available due to pruning",
|
||||||
"Unexpected error", // hyperliquid
|
"Unexpected error", // hyperliquid
|
||||||
|
"invalid block height", // 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
|
"Unexpected error", // hyperliquid
|
||||||
|
"invalid block height", // hyperliquids
|
||||||
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
|
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user