Skip to content

Commit b7b867a

Browse files
committed
fix according with review
1 parent fc8617e commit b7b867a

9 files changed

Lines changed: 350 additions & 38 deletions

File tree

Cargo.lock

Lines changed: 128 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,7 @@ parking_lot = "0.12"
571571
paste = "1.0"
572572
rand = "0.9"
573573
rayon = "1.7"
574+
rust_decimal = { version = "1.39", default-features = false, features = ["std"] }
574575
rustc-hash = { version = "2.0", default-features = false }
575576
schnellru = "0.2"
576577
serde = { version = "1.0", default-features = false }

crates/optimism/node/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ clap.workspace = true
7070
serde.workspace = true
7171
eyre.workspace = true
7272
url.workspace = true
73+
rust_decimal.workspace = true
7374

7475
# test-utils dependencies
7576
reth-e2e-test-utils = { workspace = true, optional = true }

crates/optimism/node/src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use reth_optimism_txpool::supervisor::DEFAULT_SUPERVISOR_URL;
88
use url::Url;
99

1010
/// Parameters for rollup configuration
11-
#[derive(Debug, Clone, PartialEq, clap::Args)]
11+
#[derive(Debug, Clone, PartialEq, Eq, clap::Args)]
1212
#[command(next_help_heading = "Rollup")]
1313
pub struct RollupArgs {
1414
/// Endpoint for the sequencer mempool (can be both HTTP and WS)

0 commit comments

Comments
 (0)