Browse Source

fix #2270: height sorting can use negative value

283
ThomasV 8 years ago
parent
commit
31cd9753aa
  1. 2
      lib/coinchooser.py

2
lib/coinchooser.py

@ -223,7 +223,7 @@ class CoinChooserOldestFirst(CoinChooserBase):
def choose_buckets(self, buckets, sufficient_funds, penalty_func):
'''Spend the oldest buckets first.'''
# Unconfirmed coins are young, not old
adj_height = lambda height: 99999999 if height == 0 else height
adj_height = lambda height: 99999999 if height <= 0 else height
buckets.sort(key = lambda b: max(adj_height(coin['height'])
for coin in b.coins))
selected = []

Loading…
Cancel
Save