fix bug in prefill
This commit is contained in:
parent
88095bf8ad
commit
5258f760a3
1 changed files with 1 additions and 1 deletions
2
setup.go
2
setup.go
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue