getLastSlotInEpoch method

u64 getLastSlotInEpoch(
  1. u64 epoch
)

Implementation

u64 getLastSlotInEpoch(final u64 epoch) {
  return getFirstSlotInEpoch(epoch) + getSlotsInEpoch(epoch) - 1;
}