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