tfix get_pubkeys call - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 98acf49b4ef193ec2b6b582da646bfc976de389e
DIR parent 20c7bef7ac2f875e5f38de2b0c6b8a0c5aef0225
HTML Author: ThomasV <thomasv@gitorious>
Date: Mon, 14 Jul 2014 02:39:14 +0200
fix get_pubkeys call
Diffstat:
M lib/wallet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/wallet.py b/lib/wallet.py
t@@ -352,7 +352,7 @@ class Abstract_Wallet(object):
def get_public_keys(self, address):
account_id, sequence = self.get_address_index(address)
- return self.accounts[account_id].get_pubkeys(sequence)
+ return self.accounts[account_id].get_pubkeys(*sequence)
def add_keypairs(self, tx, keypairs, password):
# first check the provided password. This will raise if invalid.