Skip to content

Commit

Permalink
[REF] get status all
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbazan7 committed Nov 28, 2023
1 parent 0746321 commit f1ade85
Show file tree
Hide file tree
Showing 2 changed files with 230 additions and 194 deletions.
6 changes: 5 additions & 1 deletion src/store/wallet/effects/rates/rates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const startGetRates =
export const getContractAddresses =
(chain: string): Effect<Array<string>> =>
(dispatch, getState) => {
dispatch(LogActions.info('getContractAddresses: starting...'));
dispatch(LogActions.info(`getContractAddresses ${chain}: starting...`));
const {
WALLET: {keys},
} = getState();
Expand Down Expand Up @@ -278,6 +278,10 @@ export const getTokenRates =
});
}
});
} else {
dispatch(
LogActions.info(`No tokens wallets for ${chain} found. Skipping getTokenRates...`),
);
}
}

Expand Down
Loading

0 comments on commit f1ade85

Please sign in to comment.