Skip to content

Commit

Permalink
Update circuit breaker defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
keppel committed Oct 12, 2023
1 parent 5124a35 commit 25cdd16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/nomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1205,13 +1205,13 @@ pub struct SignerCmd {

/// Limits the fraction of the total reserve that may be withdrawn within
/// the trailing 24-hour period
#[clap(long, default_value_t = 0.04)]
#[clap(long, default_value_t = 0.1)]
max_withdrawal_rate: f64,
/// Limits the maximum allowed signatory set change within 24 hours
///
/// The Total Variation Distance between a day-old signatory set and the
/// newly-proposed signatory set may not exceed this value
#[clap(long, default_value_t = 0.04)]
#[clap(long, default_value_t = 0.1)]
max_sigset_change_rate: f64,

reset_limits_at_index: Option<u32>,
Expand Down

0 comments on commit 25cdd16

Please sign in to comment.