automation: set max concurrent incoming bids to 1

This commit is contained in:
nahuhh
2025-09-11 13:45:25 +00:00
parent 918bf60200
commit 42c40244a1

View File

@@ -65,7 +65,7 @@ def upgradeDatabaseData(self, data_version):
label="Accept All", label="Accept All",
type_ind=Concepts.OFFER, type_ind=Concepts.OFFER,
data=json.dumps( data=json.dumps(
{"exact_rate_only": True, "max_concurrent_bids": 5} {"exact_rate_only": True, "max_concurrent_bids": 1}
).encode("utf-8"), ).encode("utf-8"),
only_known_identities=False, only_known_identities=False,
created_at=now, created_at=now,
@@ -78,7 +78,7 @@ def upgradeDatabaseData(self, data_version):
label="Accept Known", label="Accept Known",
type_ind=Concepts.OFFER, type_ind=Concepts.OFFER,
data=json.dumps( data=json.dumps(
{"exact_rate_only": True, "max_concurrent_bids": 5} {"exact_rate_only": True, "max_concurrent_bids": 1}
).encode("utf-8"), ).encode("utf-8"),
only_known_identities=True, only_known_identities=True,
note="Accept bids from identities with previously successful swaps only", note="Accept bids from identities with previously successful swaps only",