Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions docs/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ starport scaffold chain [github.com/org/repo] [flags]
```
--address-prefix string Address prefix (default "cosmos")
-h, --help help for chain
--no-default-module Prevent scaffolding a default module in the app
--no-module Prevent scaffolding a default module in the app
```

**SEE ALSO**
Expand Down Expand Up @@ -1081,4 +1081,3 @@ starport version [flags]
**SEE ALSO**

* [starport](#starport) - A developer tool for building Cosmos SDK blockchains

2 changes: 1 addition & 1 deletion integration/cmd_app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func TestGenerateAnAppWithNoDefaultModule(t *testing.T) {
"scaffold",
"chain",
fmt.Sprintf("github.com/test/%s", appName),
"--no-default-module",
"--no-module",
),
step.Workdir(root),
)),
Expand Down
2 changes: 1 addition & 1 deletion starport/cmd/scaffold_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
flagAddressPrefix = "address-prefix"
flagNoDefaultModule = "no-default-module"
flagNoDefaultModule = "no-module"
)

// NewScaffoldChain creates new command to scaffold a Comos-SDK based blockchain.
Expand Down