chore!:unify trait fn naming for recovery (#13981)

This commit is contained in:
Matthias Seitz
2025-01-24 21:56:46 +01:00
committed by GitHub
parent 61ae871d94
commit 5dac5cfc62
16 changed files with 58 additions and 60 deletions

View File

@ -322,7 +322,7 @@ where
}
// Configure the environment for the block.
let tx_recovered = tx.clone().try_into_ecrecovered().map_err(|_| {
let tx_recovered = tx.try_clone_into_recovered().map_err(|_| {
BlockExecutionError::Validation(BlockValidationError::SenderRecoveryError)
})?;
let tx_env = evm_config.tx_env(&tx_recovered, tx_recovered.signer());