Ensure zeroes is always non-empty.

This commit is contained in:
Neil Booth 2015-12-14 07:45:01 +09:00
parent 98d4384641
commit cead9cd7c6
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ class CoinChooserPrivacy(CoinChooserRandom):
zeroes = map(trailing_zeroes, output_amounts)
min_zeroes = min(zeroes)
max_zeroes = max(zeroes)
zeroes = range(max(0, min_zeroes - 1), min(max_zeroes + 1, 8) + 1)
zeroes = range(max(0, min_zeroes - 1), (max_zeroes + 1) + 1)
# Calculate change; randomize it a bit if using more than 1 output
remaining = change_amount