mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
58 lines
1.7 KiB
Go
58 lines
1.7 KiB
Go
package slots
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
prysmTime "github.com/prysmaticlabs/prysm/v5/time"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "slotutil")
|
|
|
|
// CountdownToGenesis starts a ticker at the specified duration
|
|
// logging the remaining minutes until the genesis chainstart event
|
|
// along with important genesis state metadata such as number
|
|
// of genesis validators.
|
|
func CountdownToGenesis(ctx context.Context, genesisTime time.Time, genesisValidatorCount uint64, genesisStateRoot [32]byte) {
|
|
ticker := time.NewTicker(params.BeaconConfig().GenesisCountdownInterval)
|
|
defer func() {
|
|
// Used in anonymous function to make sure that updated (per second) ticker is stopped.
|
|
ticker.Stop()
|
|
}()
|
|
logFields := logrus.Fields{
|
|
"genesisValidators": fmt.Sprintf("%d", genesisValidatorCount),
|
|
"genesisTime": fmt.Sprintf("%v", genesisTime),
|
|
"genesisStateRoot": fmt.Sprintf("%x", genesisStateRoot),
|
|
}
|
|
secondTimerActivated := false
|
|
for {
|
|
currentTime := prysmTime.Now()
|
|
if currentTime.After(genesisTime) {
|
|
log.WithFields(logFields).Info("Chain genesis time reached")
|
|
return
|
|
}
|
|
timeRemaining := genesisTime.Sub(currentTime)
|
|
if !secondTimerActivated && timeRemaining <= 2*time.Minute {
|
|
ticker.Stop()
|
|
// Replace ticker with a one having higher granularity.
|
|
ticker = time.NewTicker(time.Second)
|
|
secondTimerActivated = true
|
|
}
|
|
if timeRemaining >= time.Second {
|
|
log.WithFields(logFields).Infof(
|
|
"%s until chain genesis",
|
|
timeRemaining.Truncate(time.Second),
|
|
)
|
|
}
|
|
select {
|
|
case <-ticker.C:
|
|
case <-ctx.Done():
|
|
log.Debug("Context closed, exiting routine")
|
|
return
|
|
}
|
|
}
|
|
}
|