From 43d2fab9a0ccbfd039b30abede43fa8f23a84125 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 14 Jul 2014 02:57:12 +0200 Subject: [PATCH] get_seed -> check_password --- lib/wallet.py | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) 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) -- 1.7.1