From 8aa6d8096b901abef2eba653c492a66f683e2a81 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Mon, 8 Jan 2024 20:38:44 +0200 Subject: [PATCH] backend: Fix build 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 c81fe50a70..74d734c0cd 100644 --- a/subxt/src/backend/unstable/mod.rs +++ b/subxt/src/backend/unstable/mod.rs @@ -590,7 +590,7 @@ impl Backend for UnstableBackend { // block on the node a tx was sent to will ever be known about on the // chainHead_follow subscription. let block_ref = match seen_blocks.get(&block.hash) { - Some((_, block_ref)) => block_ref.clone().into(), + Some((_, block_ref, _)) => block_ref.clone().into(), None => BlockRef::from_hash(block.hash), }; TransactionStatus::InBestBlock { hash: block_ref }