You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag.Float64Var(&cfg.ConsolidationAmountThresholdBTC, "consolidation-amount-threshold", 0.001, "UTXO consolidation threshold (BTC) - UTXOs smaller than this will be consolidated")
91
91
flag.IntVar(&cfg.MaxConsolidationUTXOs, "consolidation-max-utxos", 5, "Maximum number of UTXOs to consolidate in a single transaction")
@@ -165,8 +165,8 @@ func main() {
165
165
continue
166
166
}
167
167
rangeID, err:=strconv.Atoi(r)
168
-
iferr!=nil||rangeID<1||rangeID>4 {
169
-
log.Fatalf("Error: invalid -enabled-amount-ranges value: %s (must be 1-4)", r)
168
+
iferr!=nil||rangeID<1||rangeID>5 {
169
+
log.Fatalf("Error: invalid -enabled-amount-ranges value: %s (must be 1-5)", r)
0 commit comments