We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707b041 commit fddc518Copy full SHA for fddc518
1 file changed
lib/ coingecko.actions.ts
@@ -67,7 +67,6 @@ export async function getTopPoolForToken(
67
if (!res.ok) throw new Error('Failed to fetch pool data');
68
const data = await res.json();
69
70
- // Return the top pool (first one, sorted by liquidity)
71
return data.data && data.data.length > 0 ? data.data[0] : null;
72
}
73
0 commit comments