chore(exex-eips): replace reth-primitives with alloy-eips (#11275)

Signed-off-by: Abhishekkochar <abhishekkochar2@gmail.com>
This commit is contained in:
Abhishek kochar
2024-09-27 22:28:03 +08:00
committed by GitHub
parent ea060fe9a0
commit fbb0b11f07
5 changed files with 7 additions and 3 deletions

1
Cargo.lock generated
View File

@ -7394,6 +7394,7 @@ name = "reth-exex"
version = "1.0.7"
dependencies = [
"alloy-consensus",
"alloy-eips",
"alloy-genesis",
"alloy-primitives",
"dashmap 6.1.0",

View File

@ -34,6 +34,7 @@ reth-tracing.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-eips.workspace = true
## async
futures.workspace = true

View File

@ -355,11 +355,12 @@ mod tests {
use super::*;
use alloy_consensus::Header;
use alloy_eips::BlockNumHash;
use eyre::OptionExt;
use futures::StreamExt;
use reth_db_common::init::init_genesis;
use reth_evm_ethereum::execute::EthExecutorProvider;
use reth_primitives::{Block, BlockNumHash};
use reth_primitives::Block;
use reth_provider::{
providers::BlockchainProvider2, test_utils::create_test_provider_factory, BlockWriter,
Chain,

View File

@ -1,9 +1,10 @@
use std::collections::{BTreeMap, VecDeque};
use alloy_eips::BlockNumHash;
use alloy_primitives::B256;
use dashmap::DashMap;
use parking_lot::RwLock;
use reth_exex_types::ExExNotification;
use reth_primitives::{BlockNumHash, B256};
/// The block cache of the WAL.
///

View File

@ -7,8 +7,8 @@ pub use storage::Storage;
use std::{path::Path, sync::Arc};
use alloy_eips::BlockNumHash;
use reth_exex_types::ExExNotification;
use reth_primitives::BlockNumHash;
use reth_tracing::tracing::{debug, instrument};
/// WAL is a write-ahead log (WAL) that stores the notifications sent to ExExes.