mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 12:10:05 +00:00
Update Attestation schedule...
log for clarify (#8148)
* Don't use fraction, use different fields * Update validator/client/validator.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Go fmt Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
parent
46c67f1e9e
commit
756ccbe5e4
@ -592,9 +592,10 @@ func (v *validator) logDuties(slot uint64, duties []*ethpb.DutiesResponse_Duty)
|
|||||||
for i := uint64(0); i < params.BeaconConfig().SlotsPerEpoch; i++ {
|
for i := uint64(0); i < params.BeaconConfig().SlotsPerEpoch; i++ {
|
||||||
if len(attesterKeys[i]) > 0 {
|
if len(attesterKeys[i]) > 0 {
|
||||||
log.WithFields(logrus.Fields{
|
log.WithFields(logrus.Fields{
|
||||||
"slot": slotOffset + i,
|
"slot": slotOffset + i,
|
||||||
"attesters": fmt.Sprintf("%d/%d", len(attesterKeys[i]), totalAttestingKeys),
|
"attesterDutiesAtSlot": len(attesterKeys[i]),
|
||||||
"pubKeys": attesterKeys[i],
|
"totalAttestersInEpoch": totalAttestingKeys,
|
||||||
|
"pubKeys": attesterKeys[i],
|
||||||
}).Info("Attestation schedule")
|
}).Info("Attestation schedule")
|
||||||
}
|
}
|
||||||
if proposerKeys[i] != "" {
|
if proposerKeys[i] != "" {
|
||||||
|
Loading…
Reference in New Issue
Block a user