IntersectMBO / cardano-ledger

The ledger implementation and specifications of the Cardano blockchain.
Apache License 2.0
262 stars 155 forks source link

Pass `curEpochNo` instead of `curSlotNo` to all the rules that don't need `SlotNo` #4692

Closed lehins closed 1 week ago

lehins commented 1 month ago

Rules like POOL do not really care about the current slot number, but instead they convert it into the current epoch number. In order to make it clearer and more efficient it would make more sense to convert the slot number to an epoch number in a top level rule like LEDGERS and pass it down through the environment.