mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
chore(lint): fix clippy::needles_lifetimes (#11496)
This commit is contained in:
@ -18,7 +18,7 @@ pub struct BundleStateDataRef<'a> {
|
||||
pub canonical_fork: ForkBlock,
|
||||
}
|
||||
|
||||
impl<'a> ExecutionDataProvider for BundleStateDataRef<'a> {
|
||||
impl ExecutionDataProvider for BundleStateDataRef<'_> {
|
||||
fn execution_outcome(&self) -> &ExecutionOutcome {
|
||||
self.execution_outcome
|
||||
}
|
||||
@ -33,7 +33,7 @@ impl<'a> ExecutionDataProvider for BundleStateDataRef<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> BlockExecutionForkProvider for BundleStateDataRef<'a> {
|
||||
impl BlockExecutionForkProvider for BundleStateDataRef<'_> {
|
||||
fn canonical_fork(&self) -> ForkBlock {
|
||||
self.canonical_fork
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user