Skip to content

Commit

Permalink
Changed point.points
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zklink committed May 7, 2024
1 parent 19c0344 commit b58c328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nova/nova.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class NovaController {
errmsg: "no error",
total_points: finalTotalPoints.toString(),
data: finalPoints.map((point) => {
point.points = point.realPoints;
point.points = BigNumber(point.points);
point.balance = BigNumber(ethers.formatEther(point.balance)).toFixed(6);
return point;
}),
Expand Down

0 comments on commit b58c328

Please sign in to comment.