New prune err (#796)

This commit is contained in:
KirillPamPam
2026-02-26 16:46:55 +04:00
committed by GitHub
parent 9108f89eee
commit 1dc553527f
4 changed files with 4 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ class EthereumLowerBoundBlockDetector(
"invalid block height", // hyperliquid "invalid block height", // hyperliquid
"pruned history unavailable", // xlayer "pruned history unavailable", // xlayer
"no transactions snapshot file for", "no transactions snapshot file for",
"has been pruned; earliest available is",
) )
} }

View File

@@ -34,6 +34,7 @@ class EthereumLowerBoundReceiptsDetector(
"header not found", "header not found",
"pruned history unavailable", // xlayer "pruned history unavailable", // xlayer
"transaction indexing is in progress", "transaction indexing is in progress",
"has been pruned; earliest available is",
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS) ).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
} }

View File

@@ -85,6 +85,7 @@ class EthereumLowerBoundStateDetector(
"state histories haven't been fully indexed yet", "state histories haven't been fully indexed yet",
"but it out-of-bounds", "but it out-of-bounds",
"not supported", "not supported",
"has been pruned; earliest available is",
) )
} }

View File

@@ -29,6 +29,7 @@ class EthereumLowerBoundTxDetector(
"invalid block height", // hyperliquids "invalid block height", // hyperliquids
"pruned history unavailable", // xlayer blocks "pruned history unavailable", // xlayer blocks
"transaction indexing is in progress", "transaction indexing is in progress",
"has been pruned; earliest available is",
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS) ).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
} }