Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed May 28, 2024
1 parent 120bd72 commit 32b77b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/getPools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const getPools = async function (this: ZetaChainClient) {
tokenAddresses.slice(i + 1).forEach((tokenB: any) => {
const pairKey = [tokenA, tokenB].sort().join("-");
if (!pairs.some((p: any) => p.key === pairKey)) {
pairs.push({ tokenA, tokenB, key: pairKey });
pairs.push({ key: pairKey, tokenA, tokenB });
}
});
return pairs;
Expand Down

0 comments on commit 32b77b6

Please sign in to comment.