From b2e4b2399b1bb0a16013d1ab88cd4936af04fc45 Mon Sep 17 00:00:00 2001 From: Mark Mackey Date: Tue, 16 Dec 2025 16:40:35 -0600 Subject: [PATCH] stupid cargo fmt again.. --- .../types/src/execution/signed_execution_payload_envelope.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/consensus/types/src/execution/signed_execution_payload_envelope.rs b/consensus/types/src/execution/signed_execution_payload_envelope.rs index 97423c7da5..a055d3d541 100644 --- a/consensus/types/src/execution/signed_execution_payload_envelope.rs +++ b/consensus/types/src/execution/signed_execution_payload_envelope.rs @@ -58,7 +58,9 @@ impl SignedExecutionPayloadEnvelope { let pk: Option = v.pubkey.decompress().ok(); pk }) - .ok_or(BeaconStateError::UnknownValidator(self.message.builder_index as usize))?; + .ok_or(BeaconStateError::UnknownValidator( + self.message.builder_index as usize, + ))?; let message = self.message.signing_root(domain); Ok(self.signature.verify(&pubkey, message))