mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
bump: revm v7.1.0 (#7064)
This commit is contained in:
@ -313,7 +313,7 @@ where
|
||||
tx_type: tx.tx_type(),
|
||||
success: result.is_success(),
|
||||
cumulative_gas_used,
|
||||
logs: result.logs().into_iter().map(Into::into).collect(),
|
||||
logs: result.into_logs().into_iter().map(Into::into).collect(),
|
||||
..Default::default()
|
||||
}));
|
||||
|
||||
|
||||
@ -397,7 +397,7 @@ mod builder {
|
||||
tx_type: sequencer_tx.tx_type(),
|
||||
success: result.is_success(),
|
||||
cumulative_gas_used,
|
||||
logs: result.logs().into_iter().map(Into::into).collect(),
|
||||
logs: result.into_logs().into_iter().map(Into::into).collect(),
|
||||
deposit_nonce: depositor.map(|account| account.nonce),
|
||||
// The deposit receipt version was introduced in Canyon to indicate an update to how
|
||||
// receipt hashes should be computed when set. The state transition process
|
||||
@ -490,7 +490,7 @@ mod builder {
|
||||
tx_type: tx.tx_type(),
|
||||
success: result.is_success(),
|
||||
cumulative_gas_used,
|
||||
logs: result.logs().into_iter().map(Into::into).collect(),
|
||||
logs: result.into_logs().into_iter().map(Into::into).collect(),
|
||||
deposit_nonce: None,
|
||||
deposit_receipt_version: None,
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user