mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
fix: exit code 1 on inst_wallet failure (#2225)
This commit is contained in:
parent
12811a2445
commit
0364168572
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ pub fn wallet_command(
|
|||
let res = inst_wallet(wallet_config.clone(), &global_wallet_args, node_client);
|
||||
res.unwrap_or_else(|e| {
|
||||
println!("{}", e);
|
||||
std::process::exit(0);
|
||||
std::process::exit(1);
|
||||
})
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue