From d9ecffe98adece207e037cb17026ce0756eb04d0 Mon Sep 17 00:00:00 2001 From: Ilia Churin Date: Mon, 21 Sep 2026 22:22:36 +0900 Subject: [PATCH] docs: drop the stale removal note on Backend::latest_finalized_block_ref --- subxt/src/backend.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/subxt/src/backend.rs b/subxt/src/backend.rs index e8504499764..577e855c3f0 100644 --- a/subxt/src/backend.rs +++ b/subxt/src/backend.rs @@ -82,7 +82,6 @@ pub trait Backend: sealed::Sealed + Send + Sync + 'static { async fn block_body(&self, at: HashFor) -> Result>>, BackendError>; /// Get the most recent finalized block hash. - /// Note: needed only in blocks client for finalized block stream; can prolly be removed. async fn latest_finalized_block_ref(&self) -> Result>, BackendError>; /// A stream of all new block headers as they arrive.