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: fix wrong option name #467

Merged
merged 1 commit into from
Apr 14, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ckb-core-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cd test && cargo run ../target/debug/ckb

## Chain Spec

The subcommand `ckb init` has an option `--export-spec` to export spec files
The subcommand `ckb init` has an option `--export-specs` to export spec files
as well, which allows editing the chain spec for development.

The chain spec can switch between different PoW engines. Wiki has the [instructions](https://github.com/nervosnetwork/ckb/wiki/PoW-Engines) about how to configure it.-
1 change: 1 addition & 0 deletions src/setup/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ fn init() -> App<'static, 'static> {
.arg(
Arg::with_name(ARG_EXPORT_SPECS)
.long(ARG_EXPORT_SPECS)
.hidden(true)
.help("Export spec files as well"),
)
}