Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading