chore: use secp fns directly (#13675)

This commit is contained in:
Matthias Seitz
2025-01-06 19:32:42 +01:00
committed by GitHub
parent 20e003f9b4
commit 4d191696ba
9 changed files with 21 additions and 18 deletions

View File

@ -332,9 +332,8 @@ mod tests {
BasicBlockExecutorProvider, BatchExecutor, BlockExecutorProvider, Executor,
};
use reth_execution_types::BlockExecutionOutput;
use reth_primitives::{
public_key_to_address, Account, Block, BlockBody, BlockExt, Transaction,
};
use reth_primitives::{Account, Block, BlockBody, BlockExt, Transaction};
use reth_primitives_traits::crypto::secp256k1::public_key_to_address;
use reth_revm::{
database::StateProviderDatabase, test_utils::StateProviderTest, TransitionState,
};