mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
net: replace reth-primitive imports with alloy-eips (#11027)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
committed by
GitHub
parent
4ae286e69f
commit
08bdec9efa
@ -57,7 +57,7 @@ pub mod fuzz_rlp {
|
||||
NewPooledTransactionHashes66, NewPooledTransactionHashes68, NodeData, P2PMessage,
|
||||
PooledTransactions, Receipts, Status, Transactions,
|
||||
};
|
||||
use reth_primitives::{BlockHashOrNumber, TransactionSigned};
|
||||
use reth_primitives::TransactionSigned;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use test_fuzz::test_fuzz;
|
||||
|
||||
@ -139,7 +139,7 @@ pub mod fuzz_rlp {
|
||||
impl Default for GetBlockHeadersWrapper {
|
||||
fn default() -> Self {
|
||||
Self(GetBlockHeaders {
|
||||
start_block: BlockHashOrNumber::Number(0),
|
||||
start_block: 0u64.into(),
|
||||
limit: Default::default(),
|
||||
skip: Default::default(),
|
||||
direction: Default::default(),
|
||||
|
||||
Reference in New Issue
Block a user