Skip to content

Commit

Permalink
fix: pivotSlot from env
Browse files Browse the repository at this point in the history
  • Loading branch information
eddort committed Jan 14, 2025
1 parent 765a798 commit 7c1f6a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/DeployCSVerifierElectra.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ contract DeployCSVerifierDevNet is DeployCSVerifier {
gIFirstValidatorCurr: FIRST_VALIDATOR_ELECTRA,
gIHistoricalSummariesPrev: HISTORICAL_SUMMARIES_DENEB,
gIHistoricalSummariesCurr: HISTORICAL_SUMMARIES_ELECTRA,
firstSupportedSlot: Slot.wrap(5 * 32), // epoch 5 // TODO: verify
pivotSlot: Slot.wrap(5 * 32), // epoch 5 // TODO: verify
firstSupportedSlot: Slot.wrap(0),
pivotSlot: Slot.wrap(uint64(vm.envUint("DEVNET_ELECTRA_EPOCH")) * 32),
chainName: "devnet"
});
}
Expand Down

0 comments on commit 7c1f6a4

Please sign in to comment.