Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Fix leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
elias-garcia committed Jun 28, 2021
1 parent dc52fb8 commit 658e60b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/store/global/global.thunks.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 0 additions & 2 deletions src/store/transaction/transaction.thunks.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 658e60b

Please sign in to comment.