Skip to content

Commit

Permalink
Update pool-onchain-gyro-fee.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Dec 22, 2023
1 parent 1b6aabd commit fc6b3b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pool/lib/pool-onchain-gyro-fee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ export const fetchOnChainGyroFees = async (pools: PoolInput[], gyroConfigAddress

const results = (await multicaller.execute()) as OnchainGyroFees;
const defaultFee = results.defaultFee ?? '0';
const eclpFee = results.eclpFee ?? '0';
const twoClpFee = results.twoClpFee ?? '0';
const threeClpFee = results.threeClpFee ?? '0';
const eclpFee = results.eclpFee ?? defaultFee;
const twoClpFee = results.twoClpFee ?? defaultFee;
const threeClpFee = results.threeClpFee ?? defaultFee;

let parsed: { [address: string]: string } = {};
if (results.pools) {
Expand Down

0 comments on commit fc6b3b8

Please sign in to comment.