Skip to content

Commit a92084b

Browse files
authored
Merge pull request #3437 from tnull/2024-12-drop-elided-lifetime-name
Drop elided lifetime name from `get_best_block`
2 parents e1e8ce0 + 2ca1d8f commit a92084b

File tree

1 file changed

+1
-1
lines changed
  • lightning-block-sync/src

1 file changed

+1
-1
lines changed

lightning-block-sync/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub trait BlockSource: Sync + Send {
7878
/// to allow for a more efficient lookup.
7979
///
8080
/// [`get_header`]: Self::get_header
81-
fn get_best_block<'a>(&'a self) -> AsyncBlockSourceResult<(BlockHash, Option<u32>)>;
81+
fn get_best_block(&self) -> AsyncBlockSourceResult<(BlockHash, Option<u32>)>;
8282
}
8383

8484
/// Result type for `BlockSource` requests.

0 commit comments

Comments
 (0)