diff --git a/crates/primitives/src/block.rs b/crates/primitives/src/block.rs index c79a597d1f55..5c47c49f4375 100644 --- a/crates/primitives/src/block.rs +++ b/crates/primitives/src/block.rs @@ -379,7 +379,7 @@ impl SealedBlock { let senders = if self.body.transactions.len() == senders.len() { senders } else { - let Some(senders) = self.body.recover_signers() else { return Err(self) }; + let Some(senders) = self.body.recover_signers_unchecked() else { return Err(self) }; senders };