File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ reth-trie-sparse = { path = "crates/trie/sparse" }
426426reth-zstd-compressors = { path = " crates/storage/zstd-compressors" , default-features = false }
427427
428428# revm
429- revm = { version = " 19.0 .0" , default-features = false }
429+ revm = { version = " 19.2 .0" , default-features = false }
430430revm-primitives = { version = " 15.1.0" , default-features = false }
431431revm-interpreter = { version = " 15.0.0" , default-features = false }
432432revm-inspectors = " 0.14.1"
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ pub trait RethL1BlockInfo {
196196 /// - `input`: The calldata of the transaction.
197197 /// - `is_deposit`: Whether or not the transaction is a deposit.
198198 fn l1_tx_data_fee (
199- & self ,
199+ & mut self ,
200200 chain_spec : & ChainSpec ,
201201 timestamp : u64 ,
202202 input : & [ u8 ] ,
@@ -219,7 +219,7 @@ pub trait RethL1BlockInfo {
219219
220220impl RethL1BlockInfo for L1BlockInfo {
221221 fn l1_tx_data_fee (
222- & self ,
222+ & mut self ,
223223 chain_spec : & ChainSpec ,
224224 timestamp : u64 ,
225225 input : & [ u8 ] ,
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ where
324324 propagate,
325325 } = outcome
326326 {
327- let l1_block_info = self . block_info . l1_block_info . read ( ) . clone ( ) ;
327+ let mut l1_block_info = self . block_info . l1_block_info . read ( ) . clone ( ) ;
328328
329329 let mut encoded = Vec :: with_capacity ( valid_tx. transaction ( ) . encoded_length ( ) ) ;
330330 let tx = valid_tx. transaction ( ) . clone_into_consensus ( ) ;
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ impl OpReceiptFieldsBuilder {
107107 mut self ,
108108 chain_spec : & OpChainSpec ,
109109 tx : & OpTransactionSigned ,
110- l1_block_info : revm:: L1BlockInfo ,
110+ mut l1_block_info : revm:: L1BlockInfo ,
111111 ) -> Result < Self , OpEthApiError > {
112112 let raw_tx = tx. encoded_2718 ( ) ;
113113 let timestamp = self . block_timestamp ;
You can’t perform that action at this time.
0 commit comments