Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ensi321 committed Sep 7, 2024
1 parent 92d364a commit eb6b386
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/state-transition/src/epoch/processSlashings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ export function processSlashings(
);
const increment = EFFECTIVE_BALANCE_INCREMENT;

const penaltyPerEffectiveBalanceIncrement = Math.floor(adjustedTotalSlashingBalanceByIncrement / totalBalanceByIncrement) * increment;
const penaltyPerEffectiveBalanceIncrement =
Math.floor(adjustedTotalSlashingBalanceByIncrement / totalBalanceByIncrement) * increment;
const penalties: number[] = [];

const penaltiesByEffectiveBalanceIncrement = new Map<number, number>();
Expand Down

0 comments on commit eb6b386

Please sign in to comment.