Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Merge pull request #2409 from gittip/bring-back-fee-cap
Browse files Browse the repository at this point in the history
Lost this in cd10912; #2399
  • Loading branch information
seanlinsley committed May 15, 2014
2 parents 41ad442 + 2a47779 commit f2b3d4a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bin/masspay.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f2b3d4a

Please sign in to comment.