Fixed spelling mistakes in comments (#13833)

This commit is contained in:
Sammy Rosso
2024-04-01 13:12:20 +02:00
committed by GitHub
parent 38f208d70d
commit 2b4bb5d890
33 changed files with 55 additions and 55 deletions

View File

@@ -260,7 +260,7 @@ func SyncCommitteePeriodStartEpoch(e primitives.Epoch) (primitives.Epoch, error)
return primitives.Epoch(startEpoch), nil
}
// SecondsSinceSlotStart returns the number of seconds transcurred since the
// SecondsSinceSlotStart returns the number of seconds elapsed since the
// given slot start time
func SecondsSinceSlotStart(s primitives.Slot, genesisTime, timeStamp uint64) (uint64, error) {
if timeStamp < genesisTime+uint64(s)*params.BeaconConfig().SecondsPerSlot {