From: ThomasV Date: Mon, 14 Jul 2014 00:57:12 +0000 (+0200) Subject: get_seed -> check_password X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=43d2fab9a0ccbfd039b30abede43fa8f23a84125 get_seed -> check_password --- diff --git a/lib/wallet.py b/lib/wallet.py index 0a64197..053e56d 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -380,19 +380,15 @@ class Abstract_Wallet(object): def signrawtransaction(self, tx, private_keys, password): # check that the password is correct. This will raise if it's not. - self.get_seed(password) - + self.check_password(password) # build a list of public/private keys keypairs = {} - # add private keys from parameter for sec in private_keys: pubkey = public_key_from_private_key(sec) keypairs[ pubkey ] = sec - # add private_keys self.add_keypairs(tx, keypairs, password) - # sign the transaction self.sign_transaction(tx, keypairs, password)