chainparams: increase min and max order sizes

This commit is contained in:
nahuhh
2024-11-19 10:38:46 +00:00
committed by tecnovert
parent 893fc87b28
commit 28af80873a
3 changed files with 75 additions and 75 deletions

View File

@@ -222,9 +222,9 @@ def readConfig(args, known_coins):
num_changes += 1
bid_templates_map[bid_template["name"]] = bid_template
if bid_template.get("min_swap_amount", 0.0) < 0.00001:
if bid_template.get("min_swap_amount", 0.0) < 0.001:
print("Setting min_swap_amount for bid template", bid_template["name"])
bid_template["min_swap_amount"] = 0.00001
bid_template["min_swap_amount"] = 0.001
if "address" not in bid_template:
print("Setting address to auto for bid", bid_template["name"])