Skip to content

Commit f6f0c51

Browse files
authored
chore: increase network descriptor wait time (#182)
1 parent 1a6f887 commit f6f0c51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/icp-cli/src/commands/cycles/mint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub(crate) enum CommandError {
7474
available: BigDecimal,
7575
},
7676

77-
#[error("No amount specified. Use --icp-amount or --cycles-amount.")]
77+
#[error("No amount specified. Use --icp or --cycles.")]
7878
NoAmountSpecified,
7979

8080
#[error("Failed to notify mint cycles: {src:?}")]

crates/icp-cli/src/commands/network/run.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ where
216216
}
217217

218218
async fn wait_for_healthy_network(nd: &NetworkDirectory) -> Result<(), CommandError> {
219-
let max_retries = 30;
219+
let max_retries = 45;
220220
let delay_ms = 1000;
221221

222222
// Wait for network descriptor to be written

0 commit comments

Comments
 (0)