Skip to content

Commit

Permalink
remove debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
mwamedacen committed Sep 12, 2023
1 parent 84ce4ba commit e6f1dc8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions scripts/gas-refund-program/computeMerkleTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export async function getRefundableTransactionData(
}

export async function computeAndStoreMerkleTree(epoch: number) {
debugger;
const userRewardsOnStakingChains = await computeStakingChainsRefundedAmounts(
epoch,
);
Expand All @@ -99,10 +98,8 @@ export async function computeAndStoreMerkleTree(epoch: number) {
)
.flat()
.filter(entry => !entry.amount.eq(0));
debugger

const userRewards = composeRefundWithPIP38Refunds(epoch, _userRewards);
debugger

const userGRPChainsBreakDowns = userRewards.reduce<{
[stakeChainId: number]: AddressRewardsMapping;
Expand Down
1 change: 0 additions & 1 deletion scripts/gas-refund-program/staking/stakes-tracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export default class StakesTracker {
let startTimeStakeV2 = await getEpochStartCalcTime(
latestEpochRefunded || GasRefundV2EpochFlip,
);
// debugger;

await Promise.all(
this.chainIds.map(async chainId =>
Expand Down

0 comments on commit e6f1dc8

Please sign in to comment.