fix #2270: height sorting can use negative value

This commit is contained in:
ThomasV 2017-03-11 12:06:15 +01:00
parent c506c3e720
commit 31cd9753aa
1 changed files with 1 additions and 1 deletions

View File

@ -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 = []