Skip to content

Commit

Permalink
fix: dont report SOR limit errors (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco authored Sep 8, 2024
1 parent 332be51 commit 0b8ee04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sor/sorV2/lib/pathGraph/pathGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export class PathGraph {
const limit = this.getLimitAmountSwapForPath(path, SwapKind.GivenIn);
return { path, limit };
} catch (_e) {
console.error('Error getting limit for path', path.map((p) => p.pool.id).join(' -> '));
console.log('Error getting limit for path', path.map((p) => p.pool.id).join(' -> '));
return undefined;
}
})
Expand Down

0 comments on commit 0b8ee04

Please sign in to comment.