diff --git a/crates/primitives-traits/src/block/recovered.rs b/crates/primitives-traits/src/block/recovered.rs index c46b8b2e6..e2c53a601 100644 --- a/crates/primitives-traits/src/block/recovered.rs +++ b/crates/primitives-traits/src/block/recovered.rs @@ -295,7 +295,7 @@ impl RecoveredBlock { #[inline] pub fn transactions_recovered( &self, - ) -> impl Iterator::Transaction>> { + ) -> impl Iterator::Transaction>> + '_ { self.transactions_with_sender().map(|(sender, tx)| Recovered::new_unchecked(tx, *sender)) }