remove dubug log

This commit is contained in:
jejolare 2025-07-28 17:40:13 +07:00
parent 33c7f389cb
commit da5726a774

View file

@ -174,8 +174,6 @@ class StatsController {
.filter((pair) => pair.volume > MIN_VOLUME_THRESHOLD)
.sort((a, b) => new Decimal(b.tvl).minus(new Decimal(a.tvl)).toNumber());
console.log('allTvls', allTvls);
const totalTVL = allTvls.reduce(
(acc, pair) => acc.add(new Decimal(pair.tvl)),
new Decimal(0),