ccxt 4.1.20__py2.py3-none-any.whl → 4.1.22__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ccxt/__init__.py +1 -1
- ccxt/abstract/okcoin.py +70 -206
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/okcoin.py +1950 -2758
- ccxt/base/exchange.py +1 -1
- ccxt/bitget.py +1 -1
- ccxt/okcoin.py +1950 -2758
- ccxt/pro/__init__.py +1 -1
- {ccxt-4.1.20.dist-info → ccxt-4.1.22.dist-info}/METADATA +5 -5
- {ccxt-4.1.20.dist-info → ccxt-4.1.22.dist-info}/RECORD +14 -14
- {ccxt-4.1.20.dist-info → ccxt-4.1.22.dist-info}/WHEEL +0 -0
- {ccxt-4.1.20.dist-info → ccxt-4.1.22.dist-info}/top_level.txt +0 -0
ccxt/base/exchange.py
CHANGED
ccxt/bitget.py
CHANGED
@@ -3445,7 +3445,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
3445
3445
|
return self.privateMarginPostIsolatedOrderBatchCancelOrder(self.extend(spotMarginRequest, params))
|
3446
3446
|
request = {
|
3447
3447
|
'productType': productType,
|
3448
|
-
'marginCoin': market
|
3448
|
+
'marginCoin': self.safe_string(market, 'settleId', 'USDT'),
|
3449
3449
|
}
|
3450
3450
|
stop = self.safe_value_2(params, 'stop', 'trigger')
|
3451
3451
|
planType = self.safe_string(params, 'planType')
|