diff --git a/js/btse.js b/js/btse.js index 00c9f97dc1f90..0224586316252 100644 --- a/js/btse.js +++ b/js/btse.js @@ -55,7 +55,7 @@ module.exports = class btse extends Exchange { 'fetchTradingFee': true, 'fetchTradingFees': true, 'fetchTransaction': false, - 'fetchTransactions': false, + 'fetchTransactions': true, 'fetchTransfers': true, 'fetchWithdrawal': false, 'fetchWithdrawals': true, @@ -1262,7 +1262,7 @@ module.exports = class btse extends Exchange { parseTransactionType (type) { const types = { 'Deposit': 'deposit', - 'Withdraw': 'withdraw', + 'Withdraw': 'withdrawal', }; return this.safeString (types, type, type); }