Skip to content

Commit

Permalink
Grin hypen wallet (mimblewimble#297)
Browse files Browse the repository at this point in the history
* Automatic changes to Cargo.lock resulting from:
cargo update.

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

* Removed Cargo.lock changes from PR 'Grin hypen wallet mimblewimble#297'
  • Loading branch information
mplsgrant authored and yeastplume committed Jan 21, 2020
1 parent 0d86896 commit 08a76c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/design/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions impls/src/lifecycle/seed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?
Expand Down
2 changes: 1 addition & 1 deletion impls/src/node_clients/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 08a76c0

Please sign in to comment.