mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-20 19:11:09 +03:00
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:
parent
0d8689663b
commit
08a76c04ff
3 changed files with 4 additions and 4 deletions
|
@ -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,
|
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):
|
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.
|
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:
|
* **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
|
https://github.com/mimblewimble/grin-web-wallet
|
||||||
|
|
|
@ -197,8 +197,8 @@ impl WalletSeed {
|
||||||
Ok(wallet_seed)
|
Ok(wallet_seed)
|
||||||
} else {
|
} else {
|
||||||
error!(
|
error!(
|
||||||
"wallet seed file {} could not be opened (grin wallet init). \
|
"wallet seed file {} could not be opened (grin-wallet init). \
|
||||||
Run \"grin wallet init\" to initialize a new wallet.",
|
Run \"grin-wallet init\" to initialize a new wallet.",
|
||||||
seed_file_path
|
seed_file_path
|
||||||
);
|
);
|
||||||
Err(ErrorKind::WalletSeedDoesntExist)?
|
Err(ErrorKind::WalletSeedDoesntExist)?
|
||||||
|
|
|
@ -363,7 +363,7 @@ pub fn create_coinbase(dest: &str, block_fees: &BlockFees) -> Result<CbData, Err
|
||||||
match single_create_coinbase(&url, &block_fees) {
|
match single_create_coinbase(&url, &block_fees) {
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!(
|
error!(
|
||||||
"Failed to get coinbase from {}. Run grin wallet listen?",
|
"Failed to get coinbase from {}. Run grin-wallet listen?",
|
||||||
url
|
url
|
||||||
);
|
);
|
||||||
error!("Underlying Error: {}", e.cause().unwrap());
|
error!("Underlying Error: {}", e.cause().unwrap());
|
||||||
|
|
Loading…
Reference in a new issue