Skip to content

Commit

Permalink
revert bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
gluneau committed Mar 4, 2024
1 parent b4983f2 commit 7250960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/staking-v3/hooks/useDappStaking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function useDappStaking() {
});

const totalStakerRewards = computed<BigInt>(
() => BigInt(rewards.value.staker.amount) + BigInt(rewards.value.bonus)
() => rewards.value.staker.amount + rewards.value.bonus
);

const constants = computed<Constants | undefined>(() => {
Expand Down

0 comments on commit 7250960

Please sign in to comment.