From b10ce431a423ac826cff01a54456cb277c4f02b3 Mon Sep 17 00:00:00 2001 From: BretasArthur1 Date: Fri, 9 Jan 2026 16:18:06 -0300 Subject: [PATCH] chore: rename wrong default value on cli --- crates/cli/src/cli/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/cli/src/cli/mod.rs b/crates/cli/src/cli/mod.rs index 1e7a284a..803daf62 100644 --- a/crates/cli/src/cli/mod.rs +++ b/crates/cli/src/cli/mod.rs @@ -133,11 +133,11 @@ enum Command { #[derive(Parser, PartialEq, Clone, Debug)] pub struct StartSimnet { - /// Path to the runbook manifest, used to locate the root of the project (eg. surfpool start --manifest-file-path ./txtx.toml) + /// Path to the runbook manifest, used to locate the root of the project (eg. surfpool start --manifest-file-path ./txtx.yml) #[arg( long = "manifest-file-path", short = 'm', - default_value = "./Surfpool.toml" + default_value = "./txtx.yml" )] pub manifest_path: String, /// Set the Simnet RPC port (eg. surfpool start --port 8080)