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

fix(docs): improve build-spec usage docs #1706

Merged
merged 2 commits into from
Jul 24, 2021
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: 3 additions & 1 deletion docs/docs/usage/import-runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ Note: the `import-runtime` subcommand does not validate that the runtime in the
To create the raw genesis file used by the node, you can use the `gossamer build-spec` subcommand.

```
./bin/gossamer build-spec --raw --genesis genesis-spec.json > genesis.json
./bin/gossamer build-spec --raw --genesis-spec genesis-spec.json > genesis.json
or
./bin/gossamer build-spec --raw --genesis-spec genesis-spec.json --output genesis.json
```

This creates a genesis file `genesis.json` that is usable by the node.
Expand Down