From 302e4447178b396d2a4405d646947a1073d973a7 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 10 Sep 2014 10:58:53 +0200 Subject: [PATCH] fix balance of PendingAccount (address was counted twice) --- lib/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/account.py b/lib/account.py index e6d3cd4c..a5c44029 100644 --- a/lib/account.py +++ b/lib/account.py @@ -102,7 +102,7 @@ class PendingAccount(Account): return def get_addresses(self, is_change): - return [self.pending_address] + return [] if is_change else [self.pending_address] def has_change(self): return False