Remove penalty_func from CoinChooserPrivacy that is later implemented/redefined.

Probably a copy pasta from the development process.
This commit is contained in:
Justin Turner Arthur 2016-03-09 14:22:28 -06:00
parent 80b1b2716c
commit 46907e97c1
1 changed files with 0 additions and 4 deletions

View File

@ -285,10 +285,6 @@ class CoinChooserPrivacy(CoinChooserRandom):
def keys(self, coins):
return [coin['address'] for coin in coins]
def penalty_func(self, buckets, tx):
'''Returns a penalty for a candidate set of buckets.'''
raise NotImplementedError
def penalty_func(self, tx):
min_change = min(o[2] for o in tx.outputs()) * 0.75
max_change = max(o[2] for o in tx.outputs()) * 1.33