Skip to content

Commit

Permalink
PR CI Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bgodlin committed Dec 1, 2024
1 parent 7c1b45f commit caefc0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export async function findEthPerToken(token: Token): Promise<BigNumber> {
let priceSoFar = ZERO_BD;
const bundle = await Bundle.get("1");

const tokenWhitelist = await WhiteListPools.getByTokenId(token.id);
const tokenWhitelist = await WhiteListPools.getByTokenId(token.id, {limit: 100});
// hardcoded fix for incorrect rates
// if whitelist includes token - get the safe price
assert(bundle);
Expand Down
2 changes: 1 addition & 1 deletion Ethereum/ethereum-uniswap-v3/src/mappings/utils/pricing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export async function findEthPerToken(token: Token): Promise<BigNumber> {
let priceSoFar = ZERO_BD;
const bundle = await Bundle.get("1");

const tokenWhitelist = await WhiteListPools.getByTokenId(token.id);
const tokenWhitelist = await WhiteListPools.getByTokenId(token.id, {limit: 100});
// hardcoded fix for incorrect rates
// if whitelist includes token - get the safe price
assert(bundle);
Expand Down

0 comments on commit caefc0b

Please sign in to comment.