From 0157e9b8fd07a687eb5dd4131ee37f871afb8292 Mon Sep 17 00:00:00 2001 From: Jane Wang Date: Thu, 13 Jun 2024 17:34:00 -0400 Subject: [PATCH] Revert "Fix some renames" This reverts commit 707fc223dae9aa6c2c59457ad7c49b4e76d0d704. --- cmd/soroban-cli/src/commands/network/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/soroban-cli/src/commands/network/mod.rs b/cmd/soroban-cli/src/commands/network/mod.rs index 1184b5b95..581b965a0 100644 --- a/cmd/soroban-cli/src/commands/network/mod.rs +++ b/cmd/soroban-cli/src/commands/network/mod.rs @@ -27,20 +27,20 @@ pub enum Cmd { Rm(rm::Cmd), /// List networks Ls(ls::Cmd), - /// ⚠️ Deprecated: use `stellar container start` instead + /// ⚠️ Deprecated: use `soroban container start` instead /// /// Start network /// /// Start a container running a Stellar node, RPC, API, and friendbot (faucet). /// - /// stellar network start [OPTIONS] + /// soroban network start [OPTIONS] /// /// By default, when starting a testnet container, without any optional arguments, it will run the equivalent of the following docker command: /// docker run --rm -p 8000:8000 --name stellar stellar/quickstart:testing --testnet --enable-soroban-rpc Start(container::StartCmd), - /// ⚠️ Deprecated: use `stellar container stop` instead + /// ⚠️ Deprecated: use `soroban container stop` instead /// - /// Stop a network started with `network start`. For example, if you ran `stellar network start local`, you can use `stellar network stop local` to stop it. + /// Stop a network started with `network start`. For example, if you ran `soroban network start local`, you can use `soroban network stop local` to stop it. Stop(container::StopCmd), /// Commands to start, stop and get logs for a quickstart container