Files
lighthouse/consensus/types/src
Akihito Nakano 3d07934ca0 Fix: end_slot returns incorrect value (#2138)
## Issue Addressed

`Epoch::end_slot()` returns incorrect value when the epoch is the last epoch which can be represented by u64.

```rust
        let slots_per_epoch = 32;

        // The last epoch which can be represented by u64.
        let epoch = Epoch::new(u64::max_value() / slots_per_epoch);

        println!("{}", epoch.end_slot(slots_per_epoch));
       // Slot(18446744073709551614)
       // -> correctly, the result should be `Slot(18446744073709551615)`.
```
2021-01-19 03:50:06 +00:00
..
2020-12-03 01:10:26 +00:00
2020-12-03 01:10:26 +00:00
2020-11-16 05:11:35 +00:00
2020-11-16 05:11:35 +00:00
2020-10-01 11:12:36 +10:00
2020-11-23 03:43:22 +00:00