mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-12-26 18:16:45 +00:00
reduce min change amount
This commit is contained in:
parent
f0aa949174
commit
0639f408db
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ import java.util.*;
|
|||
import java.util.stream.Collectors;
|
||||
|
||||
public class KnapsackUtxoSelector implements UtxoSelector {
|
||||
private static final long MIN_CHANGE = Transaction.SATOSHIS_PER_BITCOIN / 100;
|
||||
private static final long MIN_CHANGE = Transaction.SATOSHIS_PER_BITCOIN / 1000;
|
||||
|
||||
private final long noInputsFee;
|
||||
|
||||
|
|
Loading…
Reference in a new issue