Update binance leverage tiers

This commit is contained in:
Matthias 2023-02-17 06:28:11 +01:00
parent 22700527ac
commit 31c7b3e136
2 changed files with 3358 additions and 1397 deletions

File diff suppressed because it is too large Load Diff

View File

@ -495,7 +495,8 @@ def test_fill_leverage_tiers_binance_dryrun(default_conf, mocker, leverage_tiers
for key, value in leverage_tiers.items():
v = exchange._leverage_tiers[key]
assert isinstance(v, list)
assert len(v) == len(value)
# Assert if conftest leverage tiers have less or equal tiers than the exchange
assert len(v) >= len(value)
def test_additional_exchange_init_binance(default_conf, mocker):