From fb746c20b30fb24822669ce686ae0a71567c621d Mon Sep 17 00:00:00 2001 From: harkamal Date: Sun, 10 Sep 2023 17:29:54 +0530 Subject: [PATCH] integrated ssz with optional --- packages/beacon-node/src/execution/engine/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/beacon-node/src/execution/engine/types.ts b/packages/beacon-node/src/execution/engine/types.ts index 1110bf0436c4..48e7b8e544e2 100644 --- a/packages/beacon-node/src/execution/engine/types.ts +++ b/packages/beacon-node/src/execution/engine/types.ts @@ -282,6 +282,7 @@ export function parseExecutionPayload( // right now the casing of executionWitness is camel case in the ssz caseMap // we can directly use fromJson to read the serialized data from payload const {executionWitness} = data; + console.log("parse executionWitness from EL", executionWitness, {blockNumber: data.blockNumber}); (executionPayload as verge.ExecutionPayload).executionWitness = ssz.verge.ExecutionWitness.fromJson(executionWitness); }