Skip to content

Commit

Permalink
SOR can route through recovery pools
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Dec 20, 2023
1 parent e3e17bf commit 46e5fe7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/modules/sor/pool-data-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ export class DatabasePoolDataService implements PoolDataService {
const allPools: Pool[] = await queryPools(this.filterParams);
const pools = allPools.filter(
pool => !poolsToIgnore.includes(pool.id.toLowerCase()) &&
pool.swapEnabled === true &&
pool.isInRecoveryMode !== true
pool.swapEnabled === true
);

log(`Retrieved ${pools.length} pools`);
Expand Down

0 comments on commit 46e5fe7

Please sign in to comment.