Skip to content

Commit 7b1542f

Browse files
committed
fix typos
1 parent 46f2941 commit 7b1542f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/node/src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ impl SignerArgs {
491491
pub struct GasPriceOracleArgs {
492492
/// Minimum suggested priority fee (tip) in wei, default `100`
493493
#[arg(long, default_value_t = 100)]
494-
#[arg(long = "gpo.default-sugguest-priority-fee", id = "default_sugguest_priority_fee", value_name = "DEFAULT_SUGGUEST_PRIORITY_FEE", default_value_t = constants::DEFAULT_SUGGUEST_PRIORITY_FEE)]
494+
#[arg(long = "gpo.default-suggest-priority-fee", id = "default_suggest_priority_fee", value_name = "DEFAULT_SUGGEST_PRIORITY_FEE", default_value_t = constants::DEFAULT_SUGGEST_PRIORITY_FEE)]
495495
pub default_suggested_priority_fee: u64,
496496
}
497497

crates/node/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ pub(crate) const DEFAULT_MAX_L1_MESSAGES_PER_BLOCK: u64 = 4;
2323
pub(crate) const BLOCK_GAP_TRIGGER: u64 = 500_000;
2424

2525
/// The default suggested priority fee for the gas price oracle.
26-
pub(crate) const DEFAULT_SUGGUEST_PRIORITY_FEE: u64 = 100;
26+
pub(crate) const DEFAULT_SUGGEST_PRIORITY_FEE: u64 = 100;

0 commit comments

Comments
 (0)