You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error!(log,"Attestation production error";"Error" => "Rejected the attestation as it could have been slashed".to_string())
65
-
}
66
-
Ok(ValidatorEvent::PublishAttestationFailed) => {
67
-
error!(log,"Attestation production error";"Error" => "Beacon node was unable to publish an attestation".to_string())
68
-
}
69
-
Ok(ValidatorEvent::InvalidAttestation) => {
70
-
error!(log,"Attestation production error";"Error" => "The signed attestation was invalid".to_string())
71
-
}
72
-
Ok(v) => {
73
-
warn!(log,"Unknown result for attestation production";"Error" => format!("{:?}",v))
74
-
}
60
+
Ok(ValidatorEvent::SignerRejection(_slot)) => error!(log,"Attestation production error";"Error" => "Signer could not sign the attestation".to_string()),
61
+
Ok(ValidatorEvent::IndexedAttestationNotProduced(_slot)) => error!(log,"Attestation production error";"Error" => "Rejected the attestation as it could have been slashed".to_string()),
62
+
Ok(ValidatorEvent::PublishAttestationFailed) => error!(log,"Attestation production error";"Error" => "Beacon node was unable to publish an attestation".to_string()),
63
+
Ok(ValidatorEvent::InvalidAttestation) => error!(log,"Attestation production error";"Error" => "The signed attestation was invalid".to_string()),
64
+
Ok(v) => warn!(log,"Unknown result for attestation production";"Error" => format!("{:?}",v)),
error!(self.log,"Block production error";"Error" => "Beacon node was unable to produce a block".to_string())
80
-
}
81
-
Ok(v) => {
82
-
warn!(self.log,"Unknown result for block production";"Error" => format!("{:?}",v))
83
-
}
72
+
Ok(ValidatorEvent::SignerRejection(_slot)) => error!(self.log,"Block production error";"Error" => "Signer Could not sign the block".to_string()),
73
+
Ok(ValidatorEvent::SlashableBlockNotProduced(_slot)) => error!(self.log,"Block production error";"Error" => "Rejected the block as it could have been slashed".to_string()),
74
+
Ok(ValidatorEvent::BeaconNodeUnableToProduceBlock(_slot)) => error!(self.log,"Block production error";"Error" => "Beacon node was unable to produce a block".to_string()),
75
+
Ok(v) => warn!(self.log,"Unknown result for block production";"Error" => format!("{:?}",v)),
0 commit comments