mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
5aac06f04e
* begin move * use same import path * imports * regen protos * regen * no rename * generate ssz * gaz * fmt * edit build file * imports * modify * remove generated files * remove protos * edit imports in prysm * beacon chain all builds * edit script * add generated pbs * add replace rules * license for ethereumapis protos * change visibility * fmt * update build files to gaz ignore * use proper form * edit imports * wrap block * revert scripts * revert go mod
97 lines
3.0 KiB
Go
97 lines
3.0 KiB
Go
package client
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/timeutils"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "validator")
|
|
|
|
type attSubmitted struct {
|
|
data *ethpb.AttestationData
|
|
attesterIndices []types.ValidatorIndex
|
|
aggregatorIndices []types.ValidatorIndex
|
|
}
|
|
|
|
// LogAttestationsSubmitted logs info about submitted attestations.
|
|
func (v *validator) LogAttestationsSubmitted() {
|
|
v.attLogsLock.Lock()
|
|
defer v.attLogsLock.Unlock()
|
|
|
|
for _, attLog := range v.attLogs {
|
|
log.WithFields(logrus.Fields{
|
|
"Slot": attLog.data.Slot,
|
|
"CommitteeIndex": attLog.data.CommitteeIndex,
|
|
"BeaconBlockRoot": fmt.Sprintf("%#x", bytesutil.Trunc(attLog.data.BeaconBlockRoot)),
|
|
"SourceEpoch": attLog.data.Source.Epoch,
|
|
"SourceRoot": fmt.Sprintf("%#x", bytesutil.Trunc(attLog.data.Source.Root)),
|
|
"TargetEpoch": attLog.data.Target.Epoch,
|
|
"TargetRoot": fmt.Sprintf("%#x", bytesutil.Trunc(attLog.data.Target.Root)),
|
|
"AttesterIndices": attLog.attesterIndices,
|
|
"AggregatorIndices": attLog.aggregatorIndices,
|
|
}).Info("Submitted new attestations")
|
|
}
|
|
|
|
v.attLogs = make(map[[32]byte]*attSubmitted)
|
|
}
|
|
|
|
// LogNextDutyTimeLeft logs the next duty info.
|
|
func (v *validator) LogNextDutyTimeLeft(slot types.Slot) error {
|
|
if !v.logDutyCountDown {
|
|
return nil
|
|
}
|
|
if v.duties == nil {
|
|
return nil
|
|
}
|
|
|
|
var nextDutySlot types.Slot
|
|
attestingCounts := make(map[types.Slot]uint64)
|
|
proposingCounts := make(map[types.Slot]uint64)
|
|
for _, duty := range v.duties.CurrentEpochDuties {
|
|
attestingCounts[duty.AttesterSlot]++
|
|
|
|
if duty.AttesterSlot > slot && (nextDutySlot > duty.AttesterSlot || nextDutySlot == 0) {
|
|
nextDutySlot = duty.AttesterSlot
|
|
}
|
|
for _, proposerSlot := range duty.ProposerSlots {
|
|
proposingCounts[proposerSlot]++
|
|
|
|
if proposerSlot > slot && (nextDutySlot > proposerSlot || nextDutySlot == 0) {
|
|
nextDutySlot = proposerSlot
|
|
}
|
|
}
|
|
}
|
|
|
|
if nextDutySlot == 0 {
|
|
log.WithField("slotInEpoch", slot%params.BeaconConfig().SlotsPerEpoch).Info("No duty until next epoch")
|
|
} else {
|
|
nextDutyTime, err := helpers.SlotToTime(v.genesisTime, nextDutySlot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
timeLeft := time.Duration(nextDutyTime.Unix() - timeutils.Now().Unix()).Nanoseconds()
|
|
// There is not much value to log if time left is less than one slot.
|
|
if uint64(timeLeft) >= params.BeaconConfig().SecondsPerSlot {
|
|
log.WithFields(
|
|
logrus.Fields{
|
|
"currentSlot": slot,
|
|
"dutySlot": nextDutySlot,
|
|
"attesting": attestingCounts[nextDutySlot],
|
|
"proposing": proposingCounts[nextDutySlot],
|
|
"slotInEpoch": slot % params.BeaconConfig().SlotsPerEpoch,
|
|
"secondsLeft": timeLeft,
|
|
}).Info("Next duty")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|