mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
chore: bump revm and op-alloy (#16429)
Co-authored-by: Ishika Choudhury <117741714+Rimeeeeee@users.noreply.github.com>
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user