From 2a17fb13374d871784303aca8916450ad9723ea1 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Sat, 19 Oct 2024 16:03:52 +0100 Subject: [PATCH] Rephrase comment --- packages/beacon-node/src/execution/builder/http.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/beacon-node/src/execution/builder/http.ts b/packages/beacon-node/src/execution/builder/http.ts index 814fee72cd8..13f797d1c69 100644 --- a/packages/beacon-node/src/execution/builder/http.ts +++ b/packages/beacon-node/src/execution/builder/http.ts @@ -56,8 +56,8 @@ export class ExecutionBuilderHttp implements IExecutionBuilder { /** * Determine if SSZ is supported by requesting an SSZ encoded response in the `getHeader` request. - * If the builder responds with a SSZ serialized `SignedBuilderBid` it indicates support for submitting - * the `SignedBlindedBeaconBlock` as SSZ serialized bytes instead of JSON via `submitBlindedBlock`. + * The builder responding with a SSZ serialized `SignedBuilderBid` indicates support to handle the + * `SignedBlindedBeaconBlock` as SSZ serialized bytes instead of JSON when calling `submitBlindedBlock`. */ private sszSupported = false;