mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
refactor: finalize proofs mod move from reth-primitives to reth-primitives-traits (#13875)
This commit is contained in:
@ -12,11 +12,11 @@ use rand::{
|
||||
distributions::uniform::SampleRange, rngs::StdRng, seq::SliceRandom, thread_rng, SeedableRng,
|
||||
};
|
||||
use reth_primitives::{
|
||||
proofs, Account, BlockBody, Log, Receipt, SealedBlock, SealedHeader, StorageEntry, Transaction,
|
||||
Account, BlockBody, Log, Receipt, SealedBlock, SealedHeader, StorageEntry, Transaction,
|
||||
TransactionSigned,
|
||||
};
|
||||
|
||||
use reth_primitives_traits::{crypto::secp256k1::sign_message, Block as _};
|
||||
use reth_primitives_traits::{crypto::secp256k1::sign_message, proofs, Block as _};
|
||||
use secp256k1::{Keypair, Secp256k1};
|
||||
use std::{
|
||||
cmp::{max, min},
|
||||
|
||||
Reference in New Issue
Block a user