reth::primitives::transaction

Function recover_signers_unchecked

pub fn recover_signers_unchecked<'a, I, T>(
    txes: I,
    num_txes: usize,
) -> Option<Vec<Address>>
where T: SignedTransaction, I: IntoParallelIterator<Item = &'a T> + IntoIterator<Item = &'a T> + Send,
Expand description

Recovers a list of signers from a transaction list iterator without ensuring that the signature has a low s value.

Returns None, if some transaction’s signature is invalid.