fix: first_addresses

This commit is contained in:
thomasv 2013-09-04 17:46:13 +02:00
parent 1cf453587e
commit 8ab6529298
1 changed files with 4 additions and 1 deletions

View File

@ -428,7 +428,10 @@ class Wallet:
o = self.get_account_addresses(-1, include_change)
for a in self.accounts.keys():
o += self.get_account_addresses(a, include_change)
o += self.first_addresses.values()
for addr in self.first_addresses.values():
if addr not in o:
o += addr
return o