Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix(pika-protocol): Fix Pika Protocol balance
Browse files Browse the repository at this point in the history
  • Loading branch information
immasandwich committed Jun 4, 2022
1 parent a48ad63 commit 1fc62bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class OptimismPikaProtocolBalanceFetcher implements BalanceFetcher {
]);

return [
drillBalance(stakedToken, stakedBalanceRaw.toString()),
drillBalance(stakedToken, (Number(stakedBalanceRaw) / 100).toString()),
drillBalance(rewardToken, rewardBalanceRaw.toString()),
];
},
Expand Down

0 comments on commit 1fc62bb

Please sign in to comment.