mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Revert "feat: add TransactionSigned::recover_signers" (#4115)
This commit is contained in:
@ -84,8 +84,11 @@ where
|
||||
Err(BlockValidationError::SenderRecoveryError.into())
|
||||
}
|
||||
} else {
|
||||
TransactionSigned::recover_signers(body.iter(), body.len())
|
||||
.ok_or(BlockValidationError::SenderRecoveryError.into())
|
||||
body.iter()
|
||||
.map(|tx| {
|
||||
tx.recover_signer().ok_or(BlockValidationError::SenderRecoveryError.into())
|
||||
})
|
||||
.collect()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user