Skip to content

Commit

Permalink
fix: max stake amount import
Browse files Browse the repository at this point in the history
  • Loading branch information
Aerilym committed Nov 4, 2024
1 parent 0786293 commit efad33a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/staking/lib/maths.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { Contributor } from '@session/sent-staking-js/client';
import { SESSION_NODE_FULL_STAKE_AMOUNT } from '@/lib/constants';

const SESSION_NODE_FULL_STAKE_AMOUNT = 20000000000000n;

export const getContributionRangeFromContributors = (contributors: Array<Contributor> = []) => {
let remainingStake = SESSION_NODE_FULL_STAKE_AMOUNT;
Expand Down

0 comments on commit efad33a

Please sign in to comment.