Documentation updates.

This commit is contained in:
Jim McDonald
2021-08-28 20:18:29 +01:00
parent b2b26742b0
commit 84d228877a
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ var walletImportCmd = &cobra.Command{
Short: "Import a wallet",
Long: `Import a wallet. For example:
ethdo wallet import --importdata=primary --passphrase="my export secret"
ethdo wallet import --data=primary --passphrase="my export secret"
In quiet mode this will return 0 if the wallet is imported successfully, otherwise 1.`,
RunE: func(cmd *cobra.Command, args []string) error {

View File

@@ -47,7 +47,7 @@ Note that by default the wallet backup is printed to the console, hence the `>ex
A backed up wallet can be restored with the `ethdo wallet import` command, for example:
```sh
ethdo wallet import --importdata=export.dat --passphrase="export secret"
ethdo wallet import --data=export.dat --passphrase="export secret"
```
In this example the wallet to be imported is being read from the `export.dat` file.