mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 10:28:10 +01:00
automation: set max concurrent incoming bids to 1
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user