Skip to content

Commit

Permalink
Merge pull request #639 from AndrewWestberg/amw/638-fix-leadership-sc…
Browse files Browse the repository at this point in the history
…hedule-query

638-Allow next leadership-schedule at 4k/f
  • Loading branch information
carbolymer committed Sep 20, 2024
2 parents 77c8b0d + 7bdd33d commit 7792eb9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cardano-api/internal/Cardano/Api/LedgerState.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1792,14 +1792,19 @@ nextEpochEligibleLeadershipSlots sbe sGen serCurrEpochState ptclState poolid (Vr
Slot.epochInfoRange eInfo (currentEpoch `Slot.addEpochInterval` Slot.EpochInterval 1)

-- First we check if we are within 3k/f slots of the end of the current epoch.
-- In Conway era onwards, we use 4k/f slots instead of 3k/f slots.
-- see: https://ouroboros-consensus.cardano.intersectmbo.org/docs/for-developers/Glossary#epoch-structure
-- Why? Because the stake distribution is stable at this point.
-- k is the security parameter
-- f is the active slot coefficient
let stabilityWindowR :: Rational
stabilityWindowR = fromIntegral (3 * sgSecurityParam sGen) / Ledger.unboundRational (sgActiveSlotsCoeff sGen)
stabilityWindowR =
fromIntegral (stabilityWindowConst * sgSecurityParam sGen)
/ Ledger.unboundRational (sgActiveSlotsCoeff sGen)
stabilityWindowSlots :: SlotNo
stabilityWindowSlots = fromIntegral @Word64 $ floor $ fromRational @Double stabilityWindowR
stableStakeDistribSlot = currentEpochLastSlot - stabilityWindowSlots
stabilityWindowConst = caseShelleyToBabbageOrConwayEraOnwards (const 3) (const 4) sbe

case cTip of
ChainTipAtGenesis -> Left LeaderErrGenesisSlot
Expand Down

0 comments on commit 7792eb9

Please sign in to comment.