mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: bump revm 19.2 (#13667)
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -9588,9 +9588,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "revm"
|
||||
version = "19.0.0"
|
||||
version = "19.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e8905d0c5f10e767f13ea7cb8e502d315f144071a60fe2bd83977922dd3afa26"
|
||||
checksum = "8b829dc9d6e62c5a540dfdceb0c4d2217e445bf5f6f5ed3866817e7a9637c019"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"cfg-if",
|
||||
|
||||
@ -426,7 +426,7 @@ reth-trie-sparse = { path = "crates/trie/sparse" }
|
||||
reth-zstd-compressors = { path = "crates/storage/zstd-compressors", default-features = false }
|
||||
|
||||
# revm
|
||||
revm = { version = "19.0.0", default-features = false }
|
||||
revm = { version = "19.2.0", default-features = false }
|
||||
revm-primitives = { version = "15.1.0", default-features = false }
|
||||
revm-interpreter = { version = "15.0.0", default-features = false }
|
||||
revm-inspectors = "0.14.1"
|
||||
|
||||
@ -196,7 +196,7 @@ pub trait RethL1BlockInfo {
|
||||
/// - `input`: The calldata of the transaction.
|
||||
/// - `is_deposit`: Whether or not the transaction is a deposit.
|
||||
fn l1_tx_data_fee(
|
||||
&self,
|
||||
&mut self,
|
||||
chain_spec: &ChainSpec,
|
||||
timestamp: u64,
|
||||
input: &[u8],
|
||||
@ -219,7 +219,7 @@ pub trait RethL1BlockInfo {
|
||||
|
||||
impl RethL1BlockInfo for L1BlockInfo {
|
||||
fn l1_tx_data_fee(
|
||||
&self,
|
||||
&mut self,
|
||||
chain_spec: &ChainSpec,
|
||||
timestamp: u64,
|
||||
input: &[u8],
|
||||
|
||||
@ -324,7 +324,7 @@ where
|
||||
propagate,
|
||||
} = outcome
|
||||
{
|
||||
let l1_block_info = self.block_info.l1_block_info.read().clone();
|
||||
let mut l1_block_info = self.block_info.l1_block_info.read().clone();
|
||||
|
||||
let mut encoded = Vec::with_capacity(valid_tx.transaction().encoded_length());
|
||||
let tx = valid_tx.transaction().clone_into_consensus();
|
||||
|
||||
@ -107,7 +107,7 @@ impl OpReceiptFieldsBuilder {
|
||||
mut self,
|
||||
chain_spec: &OpChainSpec,
|
||||
tx: &OpTransactionSigned,
|
||||
l1_block_info: revm::L1BlockInfo,
|
||||
mut l1_block_info: revm::L1BlockInfo,
|
||||
) -> Result<Self, OpEthApiError> {
|
||||
let raw_tx = tx.encoded_2718();
|
||||
let timestamp = self.block_timestamp;
|
||||
|
||||
Reference in New Issue
Block a user