primitives: rm alloy Header reexport (#12515)

This commit is contained in:
Thomas Coratger
2024-11-13 17:41:25 +01:00
committed by GitHub
parent e6f3191c62
commit 001f3899fd
134 changed files with 493 additions and 439 deletions

View File

@ -38,6 +38,7 @@ revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg"] }
alloy-rlp.workspace = true
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-consensus.workspace = true
walkdir = "2.3.3"
serde.workspace = true

View File

@ -1,6 +1,7 @@
//! Shared models for <https://github.com/ethereum/tests>
use crate::{assert::assert_equal, Error};
use alloy_consensus::Header as RethHeader;
use alloy_eips::eip4895::Withdrawals;
use alloy_primitives::{keccak256, Address, Bloom, Bytes, B256, B64, U256};
use reth_chainspec::{ChainSpec, ChainSpecBuilder};
@ -9,9 +10,7 @@ use reth_db_api::{
cursor::DbDupCursorRO,
transaction::{DbTx, DbTxMut},
};
use reth_primitives::{
Account as RethAccount, Bytecode, Header as RethHeader, SealedHeader, StorageEntry,
};
use reth_primitives::{Account as RethAccount, Bytecode, SealedHeader, StorageEntry};
use serde::Deserialize;
use std::{collections::BTreeMap, ops::Deref};