fix bug in prefill

This commit is contained in:
Niko Storni 2018-08-09 20:59:52 -04:00
parent 758b68c751
commit 20876362e4
No known key found for this signature in database
GPG key ID: F37FE63398800368

View file

@ -104,7 +104,7 @@ func (s *Sync) ensureEnoughUTXOs() error {
}
target := 40
slack := target - int(float32(0.05)*float32(target))
slack := int(float32(0.1) * float32(target))
count := 0
for _, utxo := range *utxolist {