Skip to content

Commit eea7255

Browse files
Rimeeeeeemattsse
andauthored
chore: preparing for mint nonoptional in reth (#91)
* chore: preparing for mint nonoptional in reth * op-alloy patch * touchups --------- Co-authored-by: Matthias Seitz <[email protected]>
1 parent f574551 commit eea7255

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ alloy-hardforks = { version = "0.2" }
4949

5050
# op-alloy
5151
alloy-op-hardforks = { version = "0.2" }
52-
op-alloy-consensus = { version = "0.16", default-features = false }
52+
op-alloy-consensus = { version = "0.17", default-features = false }
5353

5454
# revm
5555
revm = { version = "24.0.0", default-features = false }
@@ -61,4 +61,3 @@ derive_more = { version = "2", default-features = false, features = ["full"] }
6161
serde = { version = "1", default-features = false, features = ["derive"] }
6262
thiserror = { version = "2.0.0", default-features = false }
6363
serde_json = "1"
64-

crates/evm/src/tx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ mod op {
405405
let deposit = if let OpTxEnvelope::Deposit(tx) = tx {
406406
DepositTransactionParts {
407407
source_hash: tx.source_hash,
408-
mint: tx.mint,
408+
mint: Some(tx.mint),
409409
is_system_transaction: tx.is_system_transaction,
410410
}
411411
} else {

0 commit comments

Comments
 (0)