Kit
Type aliases

SysvarSlotHistory

SysvarSlotHistory = object

A bitvector of slots present over the last epoch.

Properties

bits

bits: bigint[]

A vector of 64-bit numbers which, when their bits are strung together, represent a record of non-skipped slots.

The bit in position (slot % MAX_ENTRIES) is 0 if the slot was skipped and 1 otherwise, valid only when the candidate slot is less than nextSlot and greater than or equal to MAX_ENTRIES - nextSlot.


nextSlot

nextSlot: Slot

The number of the slot one newer than tracked by the bitvector

On this page