chore: bump revm and op-alloy (#16429)

Co-authored-by: Ishika Choudhury <117741714+Rimeeeeee@users.noreply.github.com>
This commit is contained in:
Matthias Seitz
2025-05-23 13:22:18 +02:00
committed by GitHub
parent b76d4f6617
commit ecbdf45654
9 changed files with 198 additions and 244 deletions

View File

@@ -53,7 +53,10 @@ impl Compact for AlloyTxDeposit {
source_hash: self.source_hash,
from: self.from,
to: self.to,
mint: self.mint,
mint: match self.mint {
0 => None,
v => Some(v),
},
value: self.value,
gas_limit: self.gas_limit,
is_system_transaction: self.is_system_transaction,
@@ -68,7 +71,7 @@ impl Compact for AlloyTxDeposit {
source_hash: tx.source_hash,
from: tx.from,
to: tx.to,
mint: tx.mint,
mint: tx.mint.unwrap_or_default(),
value: tx.value,
gas_limit: tx.gas_limit,
is_system_transaction: tx.is_system_transaction,