mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Bump evm-inspectors and alloy (#8006)
This commit is contained in:
@ -206,7 +206,7 @@ mod tests {
|
||||
};
|
||||
use reth_primitives::{
|
||||
b256, Account, Address, Block, ChainSpecBuilder, Header, Signature, StorageKey,
|
||||
StorageValue, Transaction, TransactionSigned, TxEip1559, TxKind, BASE_MAINNET,
|
||||
StorageValue, Transaction, TransactionSigned, TxEip1559, BASE_MAINNET,
|
||||
};
|
||||
use revm::L1_BLOCK_CONTRACT;
|
||||
use std::{collections::HashMap, str::FromStr, sync::Arc};
|
||||
@ -278,7 +278,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(),
|
||||
@ -287,7 +287,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()
|
||||
}),
|
||||
@ -352,7 +352,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(),
|
||||
@ -361,7 +361,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()
|
||||
}),
|
||||
|
||||
@ -466,7 +466,7 @@ mod tests {
|
||||
bytes,
|
||||
constants::{BEACON_ROOTS_ADDRESS, EIP1559_INITIAL_BASE_FEE, SYSTEM_ADDRESS},
|
||||
keccak256, Account, Bytes, ChainSpecBuilder, ForkCondition, Signature, Transaction,
|
||||
TxEip1559, TxKind, MAINNET,
|
||||
TxEip1559, MAINNET,
|
||||
};
|
||||
use revm::{Database, TransitionState};
|
||||
use std::collections::HashMap;
|
||||
@ -855,7 +855,7 @@ mod tests {
|
||||
chain_id,
|
||||
nonce: 1,
|
||||
gas_limit: 21_000,
|
||||
to: TxKind::Call(Address::ZERO),
|
||||
to: Address::ZERO.into(),
|
||||
max_fee_per_gas: EIP1559_INITIAL_BASE_FEE as u128,
|
||||
..Default::default()
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user