Use get_base_currency instead of splitting by /
This commit is contained in:
parent
e9448dc5e2
commit
e8eaa8920e
@ -938,8 +938,7 @@ class FreqtradeBot:
|
||||
"""
|
||||
# Update wallets to ensure amounts tied up in a stoploss is now free!
|
||||
self.wallets.update()
|
||||
|
||||
wallet_amount = self.wallets.get_free(pair.split('/')[0])
|
||||
wallet_amount = self.wallets.get_free(self.exchange.get_pair_base_currency(pair))
|
||||
logger.debug(f"{pair} - Wallet: {wallet_amount} - Trade-amount: {amount}")
|
||||
if wallet_amount >= amount:
|
||||
return amount
|
||||
|
@ -74,7 +74,7 @@ class Wallets:
|
||||
)
|
||||
|
||||
for trade in open_trades:
|
||||
curr = trade.pair.split('/')[0]
|
||||
curr = self._exchange.get_pair_base_currency(trade.pair)
|
||||
_wallets[curr] = Wallet(
|
||||
curr,
|
||||
trade.amount,
|
||||
|
Loading…
Reference in New Issue
Block a user