mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 06:57:53 +01:00
Merge pull request #3437 from tnull/2024-12-drop-elided-lifetime-name
Drop elided lifetime name from `get_best_block`
This commit is contained in:
commit
a92084b4dc
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ pub trait BlockSource: Sync + Send {
|
|||
/// to allow for a more efficient lookup.
|
||||
///
|
||||
/// [`get_header`]: Self::get_header
|
||||
fn get_best_block<'a>(&'a self) -> AsyncBlockSourceResult<(BlockHash, Option<u32>)>;
|
||||
fn get_best_block(&self) -> AsyncBlockSourceResult<(BlockHash, Option<u32>)>;
|
||||
}
|
||||
|
||||
/// Result type for `BlockSource` requests.
|
||||
|
|
Loading…
Add table
Reference in a new issue