Skip to content

Commit

Permalink
Update tokens.service.ts (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
fassadlr committed Mar 10, 2022
1 parent 5f8731b commit d3ceb45
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/wallet/tokens/services/tokens.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ export class TokensService {
var interFluxTokens = await this.apiService.supportedInterFluxTokens().toPromise();

interFluxTokens.forEach((token) => {
var interFluxToken = new Token(token.tokenName, token.src20Address, token.tokenName, token.decimals, TokenType.IStandardToken256.toString(), true);
supportedInterFluxTokens.push(interFluxToken);
if (token.tokenName != 'USDC') {
var interFluxToken = new Token(token.tokenName, token.src20Address, token.tokenName, token.decimals, TokenType.IStandardToken256.toString(), true);
supportedInterFluxTokens.push(interFluxToken);
}
});

const savedTokens = this.storage.getItem<SavedToken[]>(this.savedTokens);
Expand Down

0 comments on commit d3ceb45

Please sign in to comment.