mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
chore: bump alloy-evm (#14917)
This commit is contained in:
@@ -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",
|
||||
]
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user