From 85db3bcf4b378e4f300f0f78cdb217deee3be8ea Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 10 Feb 2025 21:39:01 +0100 Subject: [PATCH] docs: update log description `testnet` --- ignite/cmd/testnet.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ignite/cmd/testnet.go b/ignite/cmd/testnet.go index 1c1fbcb6cd..3e8e729dc8 100644 --- a/ignite/cmd/testnet.go +++ b/ignite/cmd/testnet.go @@ -8,7 +8,8 @@ import ( func NewTestnet() *cobra.Command { c := &cobra.Command{ Use: "testnet [command]", - Short: "Simulate (Fuzz) the chain or start a testnet, either in place (using mainnet data) or with multiple nodes.", + Short: "Simulate and manage test networks", + Long: `Comprehensive toolset for managing and simulating blockchain test networks. It allows users to either run a test network in place using mainnet data or set up a multi-node environment for more complex testing scenarios. Additionally, it includes a subcommand for simulating the chain, which is useful for fuzz testing and other testing-related tasks.`, Aliases: []string{"t"}, Args: cobra.ExactArgs(1), }