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 }