Skip to content

Commit 0ab6c38

Browse files
committed
Fix spelling.
1 parent 3a8c2c3 commit 0ab6c38

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/run-timeboost-demo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ for f in "$config_dir"/node_*.toml; do
130130
fi
131131

132132
if $yapper; then
133-
cmd+=(--require-decrypt-rounds 3)
133+
cmd+=(--required-decrypt-rounds 3)
134134
fi
135135

136136
echo "${cmd[@]}"

timeboost/src/binaries/timeboost.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ struct Cli {
6262

6363
#[cfg(feature = "until")]
6464
#[clap(long)]
65-
require_decrypt_rounds: Option<u64>,
65+
required_decrypt_rounds: Option<u64>,
6666
}
6767

6868
#[tokio::main]
@@ -269,7 +269,7 @@ async fn main() -> Result<()> {
269269
}
270270

271271
let mut until = Until::new(cli.until, Duration::from_secs(cli.watchdog_timeout), host);
272-
until.require_decrypted(cli.require_decrypt_rounds);
272+
until.require_decrypted(cli.required_decrypt_rounds);
273273

274274
spawn(until.run())
275275
};

0 commit comments

Comments
 (0)