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

@ -4,7 +4,8 @@ use alloy_eips::{eip1559::MIN_PROTOCOL_BASE_FEE, eip2718::Encodable2718, eip2930
use alloy_primitives::{Address, Bytes, TxKind, B256, U256};
use rand::Rng;
use reth_chainspec::MAINNET;
use reth_primitives::{sign_message, Transaction, TransactionSigned};
use reth_primitives::{Transaction, TransactionSigned};
use reth_primitives_traits::crypto::secp256k1::sign_message;
/// A generator for transactions for testing purposes.
#[derive(Debug)]