From 4af20d8bda7346b78368bfc8956e33cfc0e9125c Mon Sep 17 00:00:00 2001 From: johngrantuk Date: Tue, 1 Aug 2023 13:54:34 +0100 Subject: [PATCH] Remove FX filter. --- balancer-js/src/modules/sor/pool-data/subgraphPoolDataService.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/balancer-js/src/modules/sor/pool-data/subgraphPoolDataService.ts b/balancer-js/src/modules/sor/pool-data/subgraphPoolDataService.ts index 4b94e8fac..b1245c234 100644 --- a/balancer-js/src/modules/sor/pool-data/subgraphPoolDataService.ts +++ b/balancer-js/src/modules/sor/pool-data/subgraphPoolDataService.ts @@ -74,7 +74,6 @@ export class SubgraphPoolDataService implements PoolDataService { const pools = await this.getSubgraphPools(queryArgs); const filteredPools = pools.filter((p) => { - if (p.poolType === 'FX') return false; if (!this.network.poolsToIgnore) return true; const index = this.network.poolsToIgnore.findIndex((addr) => isSameAddress(addr, p.address)