Browse Source

Move debug output to end of function.

283
Neil Booth 9 years ago
parent
commit
e302dbc71c
  1. 6
      lib/coinchooser.py

6
lib/coinchooser.py

@ -57,9 +57,6 @@ class CoinChooserBase(PrintError):
buckets = self.bucketize_coins(coins)
buckets = self.choose_buckets(buckets, output_total, fee)
self.print_error("using %d inputs" % len(tx.inputs))
self.print_error("using buckets:", [bucket.desc for bucket in buckets])
tx.inputs = [coin for b in buckets for coin in b.coins]
input_total = sum(bucket.value for bucket in buckets)
tx_size = base_size + sum(bucket.size for bucket in buckets)
@ -76,6 +73,9 @@ class CoinChooserBase(PrintError):
elif change_amount:
self.print_error('not keeping dust', change_amount)
self.print_error("using %d inputs" % len(tx.inputs))
self.print_error("using buckets:", [bucket.desc for bucket in buckets])
return tx
class CoinChooser(CoinChooserBase):

Loading…
Cancel
Save