Exchange.createOrder added * as second param

This commit is contained in:
Sam Germain
2022-02-03 18:28:08 -06:00
parent 16c2d54482
commit a50f4d2c57
2 changed files with 12 additions and 3 deletions

View File

@@ -935,6 +935,7 @@ class Exchange:
def create_order(
self,
*,
pair: str,
ordertype: str,
side: str,
@@ -967,7 +968,7 @@ class Exchange:
side,
amount,
rate_for_order,
params
params,
)
self._log_exchange_response('create_order', order)
order = self._order_contracts_to_amount(order)