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/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.1.20'
7
+ __version__ = '4.1.22'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
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['settleId'],
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')