From 98acf49b4ef193ec2b6b582da646bfc976de389e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 14 Jul 2014 02:39:14 +0200 Subject: [PATCH] fix get_pubkeys call --- lib/wallet.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 516eb45..0a64197 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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. -- 1.7.1