Add proper error for lock

This commit is contained in:
Aditya Kulkarni 2019-10-22 12:56:29 -07:00
parent bea9a26e3d
commit d8075dae28

View File

@ -356,7 +356,11 @@ impl Command for LockCommand {
fn exec(&self, args: &[&str], lightclient: &LightClient) -> String { fn exec(&self, args: &[&str], lightclient: &LightClient) -> String {
if args.len() != 0 { if args.len() != 0 {
return self.help(); let mut h = vec![];
h.push("Extra arguments to lock. Did you mean 'encrypt'?");
h.push("");
return format!("{}\n{}", h.join("\n"), self.help());
} }
match lightclient.wallet.write().unwrap().lock() { match lightclient.wallet.write().unwrap().lock() {