chore: bump alloy-evm (#14917)

This commit is contained in:
Arsenii Kulikov
2025-03-09 01:25:56 +04:00
committed by GitHub
parent a870ac4a03
commit d1f625f6bb
49 changed files with 611 additions and 2657 deletions

View File

@@ -10,15 +10,13 @@ use crate::tree::{
StateProviderBuilder, TreeConfig,
};
use alloy_consensus::{transaction::Recovered, BlockHeader};
use alloy_evm::block::StateChangeSource;
use alloy_primitives::B256;
use executor::WorkloadExecutor;
use multiproof::*;
use parking_lot::RwLock;
use prewarm::PrewarmMetrics;
use reth_evm::{
system_calls::{OnStateHook, StateChangeSource},
ConfigureEvm, ConfigureEvmEnvFor,
};
use reth_evm::{ConfigureEvm, ConfigureEvmEnvFor, OnStateHook};
use reth_primitives_traits::{NodePrimitives, SealedHeaderFor};
use reth_provider::{
providers::ConsistentDbView, BlockReader, DatabaseProviderFactory, StateCommitmentProvider,
@@ -392,10 +390,11 @@ mod tests {
},
StateProviderBuilder, TreeConfig,
};
use alloy_evm::block::StateChangeSource;
use reth_chainspec::ChainSpec;
use reth_db_common::init::init_genesis;
use reth_ethereum_primitives::EthPrimitives;
use reth_evm::system_calls::{OnStateHook, StateChangeSource};
use reth_evm::OnStateHook;
use reth_evm_ethereum::EthEvmConfig;
use reth_primitives_traits::{Account, StorageEntry};
use reth_provider::{

View File

@@ -1,11 +1,11 @@
//! Multiproof task related functionality.
use crate::tree::payload_processor::{executor::WorkloadExecutor, sparse_trie::SparseTrieEvent};
use alloy_evm::block::StateChangeSource;
use alloy_primitives::{keccak256, map::HashSet, B256};
use derive_more::derive::Deref;
use metrics::Histogram;
use reth_errors::ProviderError;
use reth_evm::system_calls::StateChangeSource;
use reth_metrics::Metrics;
use reth_provider::{
providers::ConsistentDbView, BlockReader, DatabaseProviderFactory, StateCommitmentProvider,