Skip to content

Commit 05130b6

Browse files
authored
Merge pull request #413 from tnull/2024-12-drop-elided-lifetime-name
Drop name of elided lifetime
2 parents c605781 + ee782f3 commit 05130b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chain/bitcoind_rpc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl BlockSource for BitcoindRpcClient {
201201
Box::pin(async move { self.rpc_client.get_block(header_hash).await })
202202
}
203203

204-
fn get_best_block<'a>(&'a self) -> AsyncBlockSourceResult<(BlockHash, Option<u32>)> {
204+
fn get_best_block(&self) -> AsyncBlockSourceResult<(BlockHash, Option<u32>)> {
205205
Box::pin(async move { self.rpc_client.get_best_block().await })
206206
}
207207
}

0 commit comments

Comments
 (0)