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

@@ -19,6 +19,7 @@ revm.workspace = true
revm-database.workspace = true
# alloy
alloy-evm.workspace = true
alloy-consensus.workspace = true
alloy-primitives.workspace = true
alloy-eips.workspace = true
@@ -70,4 +71,5 @@ std = [
"reth-ethereum-primitives/std",
"reth-trie-common/std",
"revm-database/std",
"alloy-evm/std",
]

View File

@@ -1,17 +1,6 @@
use alloc::vec::Vec;
use alloy_eips::eip7685::Requests;
use revm_database::BundleState;
/// The result of executing a block.
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct BlockExecutionResult<T> {
/// All the receipts of the transactions in the block.
pub receipts: Vec<T>,
/// All the EIP-7685 requests in the block.
pub requests: Requests,
/// The total gas used by the block.
pub gas_used: u64,
}
pub use alloy_evm::block::BlockExecutionResult;
/// [`BlockExecutionResult`] combined with state.
#[derive(