cd9a539288
* Only update outputs with unconfirmed transactions outstanding * add further check for Unspent output that have been spent to check_repair * rename to * make updating all outputs optional API parameter. do full update before a wallet check, remove unspent->spent check from check process * rustfmt * typo * add recover from phrase option to init * rustfmt * don't panic if recover is cancelled, grin-wallet.toml is created but wallet_data dir doesn't yet exits * rustfmt
69 lines
2.1 KiB
Rust
69 lines
2.1 KiB
Rust
// Copyright 2018 The Grin Developers
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use crate::cmd::wallet_args;
|
|
use crate::config::GlobalWalletConfig;
|
|
use clap::ArgMatches;
|
|
use grin_wallet::{self, HTTPNodeClient, WalletConfig, WalletSeed};
|
|
use std::path::PathBuf;
|
|
use std::thread;
|
|
use std::time::Duration;
|
|
|
|
pub fn _init_wallet_seed(wallet_config: WalletConfig, password: &str) {
|
|
if let Err(_) = WalletSeed::from_file(&wallet_config, password) {
|
|
WalletSeed::init_file(&wallet_config, 32, None, password)
|
|
.expect("Failed to create wallet seed file.");
|
|
};
|
|
}
|
|
|
|
pub fn seed_exists(wallet_config: WalletConfig) -> bool {
|
|
let mut data_file_dir = PathBuf::new();
|
|
data_file_dir.push(wallet_config.data_file_dir);
|
|
data_file_dir.push(grin_wallet::SEED_FILE);
|
|
if data_file_dir.exists() {
|
|
true
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
pub fn wallet_command(wallet_args: &ArgMatches<'_>, config: GlobalWalletConfig) -> i32 {
|
|
// just get defaults from the global config
|
|
let wallet_config = config.members.unwrap().wallet;
|
|
|
|
// web wallet http server must be started from here
|
|
// NB: Turned off for the time being
|
|
/*let _ = match wallet_args.subcommand() {
|
|
("web", Some(_)) => start_webwallet_server(),
|
|
_ => {}
|
|
};*/
|
|
|
|
let node_client = HTTPNodeClient::new(&wallet_config.check_node_api_http_addr, None);
|
|
let res = wallet_args::wallet_command(wallet_args, wallet_config, node_client);
|
|
|
|
// we need to give log output a chance to catch up before exiting
|
|
thread::sleep(Duration::from_millis(100));
|
|
|
|
if let Err(e) = res {
|
|
println!("Wallet command failed: {}", e);
|
|
1
|
|
} else {
|
|
println!(
|
|
"Command '{}' completed successfully",
|
|
wallet_args.subcommand().0
|
|
);
|
|
0
|
|
}
|
|
}
|