From 2a477796d0daca5507529ce4290dfb7a02ca0af5 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Thu, 15 May 2014 17:08:07 -0400 Subject: [PATCH] Lost this in cd109127cad; #2399 --- bin/masspay.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/masspay.py b/bin/masspay.py index 86a532ef15..916e31e9d2 100755 --- a/bin/masspay.py +++ b/bin/masspay.py @@ -101,6 +101,7 @@ def assess_fee(self): while 1: net -= D('0.01') fee = round_(net * D('0.02')) + fee = min(fee, self.fee_cap) gross = net + fee if gross <= target: break