Skip to content

Commit

Permalink
same for SealedBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
joshieDo committed Nov 20, 2024
1 parent 61328cb commit 940b381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/primitives/src/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit 940b381

Please sign in to comment.