Merge pull request #364 from nahuhh/automation_strat_max_concurrent

automation: set max concurrent incoming bids to 1
This commit is contained in:
tecnovert
2025-10-01 18:25:27 +00:00
committed by GitHub

View File

@@ -69,7 +69,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,
@@ -82,7 +82,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",