Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class EthereumLowerBoundBlockDetector(
"invalid block height", // hyperliquid
"pruned history unavailable", // xlayer
"no transactions snapshot file for",
"has been pruned; earliest available is",
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class EthereumLowerBoundReceiptsDetector(
"header not found",
"pruned history unavailable", // xlayer
"transaction indexing is in progress",
"has been pruned; earliest available is",
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ class EthereumLowerBoundStateDetector(
"state histories haven't been fully indexed yet",
"but it out-of-bounds",
"not supported",
"has been pruned; earliest available is",
)
}

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

Expand Down
Loading