Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update long description testnet (backport #4502) #4504

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 5 additions & 0 deletions ignite/cmd/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,20 @@
func NewTestnet() *cobra.Command {
c := &cobra.Command{
Use: "testnet [command]",
<<<<<<< HEAD

Check failure on line 11 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 11 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected <<, expected expression

Check failure on line 11 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

expected operand, found '<<' (typecheck)

Check failure on line 11 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 11 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

syntax error: unexpected <<, expected expression

Check failure on line 11 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

syntax error: unexpected <<, expected expression
Short: "Start a testnet local",
=======
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.`,
>>>>>>> 7aa6b4a5 (docs: update long description `testnet` (#4502))

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on ubuntu-latest

syntax error: unexpected ) in composite literal; possibly missing comma or }

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

invalid character U+0023 '#'

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected ) in composite literal; possibly missing comma or }

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

illegal character U+0023 '#' (typecheck)

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on macos-latest

invalid character U+0023 '#'

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on macos-latest

syntax error: unexpected ) in composite literal; possibly missing comma or }

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

invalid character U+0023 '#'

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

syntax error: unexpected ) in composite literal; possibly missing comma or }

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

invalid character U+0023 '#'

Check failure on line 16 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

syntax error: unexpected ) in composite literal; possibly missing comma or }
Aliases: []string{"t"},
Args: cobra.ExactArgs(1),

Check failure on line 18 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on ubuntu-latest

syntax error: unexpected :, expected := or = or comma

Check failure on line 18 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected :, expected := or = or comma

Check failure on line 18 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on macos-latest

syntax error: unexpected :, expected := or = or comma

Check failure on line 18 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

syntax error: unexpected :, expected := or = or comma

Check failure on line 18 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

syntax error: unexpected :, expected := or = or comma
}

c.AddCommand(

Check failure on line 21 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on ubuntu-latest

syntax error: non-declaration statement outside function body

Check failure on line 21 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: non-declaration statement outside function body (typecheck)

Check failure on line 21 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test network on macos-latest

syntax error: non-declaration statement outside function body

Check failure on line 21 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

syntax error: non-declaration statement outside function body

Check failure on line 21 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

syntax error: non-declaration statement outside function body
NewTestnetInPlace(),
NewTestnetMultiNode(),
)

return c

Check failure on line 26 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

missing ',' in composite literal (typecheck)
}

Check failure on line 27 in ignite/cmd/testnet.go

View workflow job for this annotation

GitHub Actions / Lint Go code

expected '}', found 'EOF' (typecheck)
Loading