Attempt test fix

This commit is contained in:
Matthias
2022-02-15 06:59:10 +01:00
parent 5ee5e0256b
commit 324fdcedb1
2 changed files with 3 additions and 3 deletions

View File

@@ -1888,7 +1888,7 @@ class Exchange:
self._leverage_tiers[pair] = pair_tiers
def parse_leverage_tier(self, tier) -> Dict:
info = tier['info']
info = tier.get('info', {})
return {
'min': tier['notionalFloor'],
'max': tier['notionalCap'],