From 658e60baccf875bfbc33547336b8cab6131f16a9 Mon Sep 17 00:00:00 2001 From: Elias Date: Mon, 28 Jun 2021 16:49:58 +0200 Subject: [PATCH] Fix leftovers --- src/store/global/global.thunks.js | 2 +- src/store/transaction/transaction.thunks.js | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/store/global/global.thunks.js b/src/store/global/global.thunks.js index 6ff7600c7..1deab18b6 100644 --- a/src/store/global/global.thunks.js +++ b/src/store/global/global.thunks.js @@ -85,7 +85,7 @@ function changeRedirectRoute (redirectRoute) { * @param {string[]} symbols - ISO 4217 currency codes * @returns {void} */ -function fetchFiatExchangeRates (symbols) { +function fetchFiatExchangeRates () { return (dispatch) => { const symbols = Object.values(CurrencySymbol) .filter(currency => currency.code !== CurrencySymbol.USD.code) diff --git a/src/store/transaction/transaction.thunks.js b/src/store/transaction/transaction.thunks.js index b5d5a57d4..55ed1b2e2 100644 --- a/src/store/transaction/transaction.thunks.js +++ b/src/store/transaction/transaction.thunks.js @@ -197,8 +197,6 @@ function fetchAccountBalance () { */ function fetchFees () { return function (dispatch, getState) { - const { global: { coordinatorStateTask } } = getState() - console.log(coordinatorStateTask) dispatch(transactionActions.loadFees()) return CoordinatorAPI.getState()