Skip to content

Commit

Permalink
fix poseidollar
Browse files Browse the repository at this point in the history
  • Loading branch information
g1nt0ki committed Sep 26, 2024
1 parent b3472f1 commit 5b98bf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/poseidollar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ async function suiTVL(api) {
"0x3cfad71fc1f65addbadc0d4056fbd1106aa6b9a219e3ea1f5356a2f500d13182"
);

//TVL on PSH Earn
for (let i = 0; i < poolShareInfo.length; i++) {
//TVL on PSH Earn - ignoring pool 0, it is returning absurd value
for (let i = 1; i < poolShareInfo.length; i++) {
api.add(poolShareInfo[i].coinX, poolShareInfo[i].coinXStaked)

if (poolShareInfo[i].coinY)
Expand Down

0 comments on commit 5b98bf3

Please sign in to comment.