commit b03028956b43428b46f7b1a1a07b5f395c9fffd0 parent 12e19d34080fb3f33df3e65a37c3e32fcc9936d7 Author: thomasv <thomasv@gitorious> Date: Fri, 16 Dec 2011 12:55:38 +0100 fix get_balance Diffstat:
M | client/electrum.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/client/electrum.py b/client/electrum.py @@ -469,7 +469,7 @@ See the release notes for more information.""",1) def get_balance(self): conf = unconf = 0 - for addr in self.addresses: + for addr in self.all_addresses(): c, u = self.get_addr_balance(addr) conf += c unconf += u