Skip to content

Commit

Permalink
fix: fixed router in curve lite
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorovdg committed Nov 18, 2024
1 parent 407e29f commit ac890be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pools/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export const getUserPoolList = async (address = curve.signerAddress, useApi = tr

export const _getAmplificationCoefficientsFromApi = async (): Promise<IDict<number>> => {
const network = curve.constants.NETWORK_NAME;
const allTypesExtendedPoolData = await _getAllPoolsFromApi(network);
const allTypesExtendedPoolData = await _getAllPoolsFromApi(network, curve.isLiteChain);
const amplificationCoefficientDict: IDict<number> = {};

for (const extendedPoolData of allTypesExtendedPoolData) {
Expand Down

0 comments on commit ac890be

Please sign in to comment.