From 181ce5e9dcee6396cdb0837c6f5cc54bb08f1d30 Mon Sep 17 00:00:00 2001 From: Potuz Date: Wed, 3 Jul 2024 08:03:24 -0300 Subject: [PATCH] add type annotation --- specs/_features/eipxxxx/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/_features/eipxxxx/beacon-chain.md b/specs/_features/eipxxxx/beacon-chain.md index 88075df5a..efcf59b91 100644 --- a/specs/_features/eipxxxx/beacon-chain.md +++ b/specs/_features/eipxxxx/beacon-chain.md @@ -583,7 +583,7 @@ def verify_execution_payload_envelope_signature( ```python def process_execution_payload(state: BeaconState, signed_envelope: SignedExecutionPayloadEnvelope, - execution_engine: ExecutionEngine, verify=True) -> None: + execution_engine: ExecutionEngine, verify: bool = True) -> None: # Verify signature if verify: assert verify_execution_payload_envelope_signature(state, signed_envelope)