fix bug in prefill

This commit is contained in:
Niko Storni 2018-08-09 20:59:52 -04:00
parent 88095bf8ad
commit 5258f760a3

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 {