Remove stable coin duplicates (#35)

This commit is contained in:
Armani Ferrante 2021-06-10 10:19:51 -07:00 committed by GitHub
parent 5a3381247f
commit 8eb5dcae19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -43,10 +43,6 @@ export function TokenListContextProvider(props: any) {
t.address === "So11111111111111111111111111111111111111112";
return isUsdxQuoted && !isSol;
})
.concat([
tokenMap.get(USDC_MINT.toString()),
tokenMap.get(USDT_MINT.toString()),
]);
tokens.sort((a: TokenInfo, b: TokenInfo) =>
a.symbol < b.symbol ? -1 : a.symbol > b.symbol ? 1 : 0
);