Skip to content

Commit

Permalink
feat: change default sleep for values (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszjasiuk authored Sep 4, 2024
1 parent 3f7318d commit e30ee10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion governance/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct AppConfig {
#[clap(long, env)]
pub tendermint_url: String,

#[clap(long, env, default_value_t = 900)]
#[clap(long, env, default_value_t = 60)]
pub sleep_for: u64,

#[clap(long, env)]
Expand Down
2 changes: 1 addition & 1 deletion rewards/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct AppConfig {
#[clap(long, env)]
pub tendermint_url: String,

#[clap(long, env, default_value_t = 900)]
#[clap(long, env, default_value_t = 60)]
pub sleep_for: u64,

#[clap(long, env)]
Expand Down

0 comments on commit e30ee10

Please sign in to comment.