From f7cf90d268787570ad6aeda4312993be89ac220c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 27 Oct 2016 14:32:27 +0200 Subject: [PATCH] fix #2007 --- lib/wallet.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/wallet.py b/lib/wallet.py index ef780e8c..c05a155d 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1027,6 +1027,7 @@ class Abstract_Wallet(PrintError): otype, address, value = o if value - delta >= self.dust_threshold(): outputs[i] = otype, address, value - delta + delta = 0 break else: del outputs[i]