Bump evm-inspectors and alloy (#8006)

This commit is contained in:
Thomas Coratger
2024-04-30 23:07:41 +02:00
committed by GitHub
parent d532217afb
commit 8e65cb3aa5
18 changed files with 78 additions and 98 deletions

View File

@ -539,7 +539,7 @@ mod tests {
use super::*;
use reth_primitives::{
b256, Account, Address, Block, ChainSpecBuilder, Signature, StorageKey, StorageValue,
Transaction, TransactionSigned, TxEip1559, TxKind, BASE_MAINNET,
Transaction, TransactionSigned, TxEip1559, BASE_MAINNET,
};
use reth_revm::{
database::StateProviderDatabase, test_utils::StateProviderTest, L1_BLOCK_CONTRACT,
@ -609,7 +609,7 @@ mod tests {
chain_id: chain_spec.chain.id(),
nonce: 0,
gas_limit: 21_000,
to: TxKind::Call(addr),
to: addr.into(),
..Default::default()
}),
Signature::default(),
@ -618,7 +618,7 @@ mod tests {
let tx_deposit = TransactionSigned::from_transaction_and_signature(
Transaction::Deposit(reth_primitives::TxDeposit {
from: addr,
to: TxKind::Call(addr),
to: addr.into(),
gas_limit: 21_000,
..Default::default()
}),
@ -689,7 +689,7 @@ mod tests {
chain_id: chain_spec.chain.id(),
nonce: 0,
gas_limit: 21_000,
to: TxKind::Call(addr),
to: addr.into(),
..Default::default()
}),
Signature::default(),
@ -698,7 +698,7 @@ mod tests {
let tx_deposit = TransactionSigned::from_transaction_and_signature(
Transaction::Deposit(reth_primitives::TxDeposit {
from: addr,
to: TxKind::Call(addr),
to: addr.into(),
gas_limit: 21_000,
..Default::default()
}),