From 7d3cdb29de238a518a7e76c20fda97db78aa0079 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Thu, 14 Dec 2023 12:30:07 +0200 Subject: [PATCH] fix/backend: Do not remove block hashes from seen blocks Signed-off-by: Alexandru Vasile --- subxt/src/backend/unstable/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subxt/src/backend/unstable/mod.rs b/subxt/src/backend/unstable/mod.rs index 031036d38f..3c85aef51e 100644 --- a/subxt/src/backend/unstable/mod.rs +++ b/subxt/src/backend/unstable/mod.rs @@ -530,7 +530,7 @@ impl Backend for UnstableBackend { } else { // Keep waiting for more finalized blocks until we find it (get rid of any other block refs // now, since none of them were what we were looking for anyway). - seen_blocks.clear(); + // seen_blocks.clear(); continue; } }