Grin hypen wallet (#297)

* Automatic changes to Cargo.lock resulting from:
cargo update.

* Changed 'grin wallet' to 'grin-wallet'.

* Removed Cargo.lock changes from PR 'Grin hypen wallet #297'
This commit is contained in:
mplsgrant 2020-01-21 06:42:54 -06:00 committed by Yeastplume
parent 0d8689663b
commit 08a76c04ff
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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)?

View file

@ -363,7 +363,7 @@ pub fn create_coinbase(dest: &str, block_fees: &BlockFees) -> Result<CbData, Err
match single_create_coinbase(&url, &block_fees) {
Err(e) => {
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());