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: Added description of how to run the unsafe-reset-all command in simapp README #11718

Merged
merged 3 commits into from
Apr 21, 2022
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion simapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ in this testnet.
`simd` binary inside a new `build` directory. The following instructions are run from inside
the `build` directory.
2. If you've run `simd` before, you may need to reset your database before starting a new
testnet. You can reset your database with the following command: `$ ./simd unsafe-reset-all`.
testnet. You can reset your database with the following command: `$ ./simd tendermint unsafe-reset-all`. * If you are using a version earlier than v0.45.3, it will be `$ ./simd unsafe-reset-all`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @takapi327!

Given that we are using version control, I don't think we need to explain the old way to run unsafe-reset-all.
If you are using an older version, you can always find the older command in the changelog or checkout the version tag.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@julienrbrt
Thank you!
You're absolutely right!
Removed description of the old way to run unsafe-reset-all.

3. `$ ./simd init [moniker] --chain-id [chain-id]`. This will initialize a new working directory
at the default location `~/.simapp`. You need to provide a "moniker" and a "chain id". These
two names can be anything, but you will need to use the same "chain id" in the following steps.
Expand Down