fix get_pubkeys call

This commit is contained in:
ThomasV 2014-07-14 02:39:14 +02:00
parent 20c7bef7ac
commit 98acf49b4e
1 changed files with 1 additions and 1 deletions

View File

@ -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.