diff --git a/doc/design/design.md b/doc/design/design.md index f33cc677..d1135045 100644 --- a/doc/design/design.md +++ b/doc/design/design.md @@ -8,7 +8,7 @@ The current Grin `wallet` crate provides several layers of libraries, services, various needs within the default Grin wallet as well as provide a set of useful library functions for 3rd-party implementors. At a very high level, the code is organized into the following components (from highest-level to lowest): -* **Command Line Client** - The command line client invoked by `grin wallet [command]`, simply instantiates the other components below +* **Command Line Client** - The command line client invoked by `grin-wallet [command]`, simply instantiates the other components below and parses command line arguments as needed. * **Web Wallet Client** - [Work In Progress] A web wallet client accessible from the local machine only. Current code can be viewed here: https://github.com/mimblewimble/grin-web-wallet diff --git a/impls/src/lifecycle/seed.rs b/impls/src/lifecycle/seed.rs index 120d074a..cb303078 100644 --- a/impls/src/lifecycle/seed.rs +++ b/impls/src/lifecycle/seed.rs @@ -197,8 +197,8 @@ impl WalletSeed { Ok(wallet_seed) } else { error!( - "wallet seed file {} could not be opened (grin wallet init). \ - Run \"grin wallet init\" to initialize a new wallet.", + "wallet seed file {} could not be opened (grin-wallet init). \ + Run \"grin-wallet init\" to initialize a new wallet.", seed_file_path ); Err(ErrorKind::WalletSeedDoesntExist)? diff --git a/impls/src/node_clients/http.rs b/impls/src/node_clients/http.rs index f2f2093d..27a1a147 100644 --- a/impls/src/node_clients/http.rs +++ b/impls/src/node_clients/http.rs @@ -363,7 +363,7 @@ pub fn create_coinbase(dest: &str, block_fees: &BlockFees) -> Result { error!( - "Failed to get coinbase from {}. Run grin wallet listen?", + "Failed to get coinbase from {}. Run grin-wallet listen?", url ); error!("Underlying Error: {}", e.cause().unwrap());