From e93f22759811bd5989450a0030703dbac3e1fe85 Mon Sep 17 00:00:00 2001 From: alexvanin Date: Wed, 1 Apr 2020 15:12:05 +0300 Subject: [PATCH] docs: update wallet operations examples in cli documentation In #589 `wallet open` command was renamed to `wallet dump`. In #757 `wallet create` command was renamed to `wallet init`. --- docs/cli.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/cli.md b/docs/cli.md index d8a224b88..adcbf0dbc 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -184,6 +184,6 @@ There is a small subset of commands: ## Wallet operations -- `./bin/neo-go wallet create -p newWallet` to create new wallet in the path `newWallet` -- `./bin/neo-go wallet open -p newWallet` to open created wallet in the path `newWallet` -- `./bin/neo-go wallet create -p newWallet -a` to create new account +- `./bin/neo-go wallet init -p newWallet` to create new wallet in the path `newWallet` +- `./bin/neo-go wallet dump -p newWallet` to open created wallet in the path `newWallet` +- `./bin/neo-go wallet init -p newWallet -a` to create new account