electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 43d2fab9a0ccbfd039b30abede43fa8f23a84125
parent 98acf49b4ef193ec2b6b582da646bfc976de389e
Author: ThomasV <thomasv@gitorious>
Date:   Mon, 14 Jul 2014 02:57:12 +0200

get_seed -> check_password

Diffstat:
Mlib/wallet.py | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git 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)