From c7011d8aa2bb81f86cba3d189a4ab03b86641fdf Mon Sep 17 00:00:00 2001 From: KirillPamPam Date: Thu, 26 Feb 2026 16:38:33 +0400 Subject: [PATCH 1/3] New tx err --- .../upstream/ethereum/EthereumLowerBoundReceiptsDetector.kt | 1 + .../dshackle/upstream/ethereum/EthereumLowerBoundTxDetector.kt | 1 + 2 files changed, 2 insertions(+) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundReceiptsDetector.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundReceiptsDetector.kt index 872df450..b71a7aaa 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundReceiptsDetector.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundReceiptsDetector.kt @@ -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) } diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundTxDetector.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundTxDetector.kt index 5a005136..7bc2800c 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundTxDetector.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundTxDetector.kt @@ -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) } From 33205bc22b4873e819deb7a84ed4fce462abccc0 Mon Sep 17 00:00:00 2001 From: KirillPamPam Date: Thu, 26 Feb 2026 16:39:15 +0400 Subject: [PATCH 2/3] New tx err --- .../upstream/ethereum/EthereumLowerBoundBlockDetector.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundBlockDetector.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundBlockDetector.kt index c67d6ea4..7e38c0c1 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundBlockDetector.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundBlockDetector.kt @@ -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", ) } From b3313ea9ce7b9edd42642d61e01f141ec52b9e61 Mon Sep 17 00:00:00 2001 From: KirillPamPam Date: Thu, 26 Feb 2026 16:39:54 +0400 Subject: [PATCH 3/3] New tx err --- .../upstream/ethereum/EthereumLowerBoundStateDetector.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundStateDetector.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundStateDetector.kt index 15659015..2e207110 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundStateDetector.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLowerBoundStateDetector.kt @@ -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", ) }