From 3e4dd7ef0d6231356842f02a28d36a81235b70cf Mon Sep 17 00:00:00 2001 From: Jinsuk Park Date: Tue, 10 Sep 2024 01:04:25 +0900 Subject: [PATCH] set bellatrix and capella to nil --- builder/builder.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/builder.go b/builder/builder.go index 23db4f375d..9370a084b0 100644 --- a/builder/builder.go +++ b/builder/builder.go @@ -269,8 +269,8 @@ func (b *Builder) handleGetPayload(w http.ResponseWriter, req *http.Request) { versionedExecutionPayload := &VersionedExecutionPayload{ Version: bestSubmission.Version, - Bellatrix: bestSubmission.Bellatrix.ExecutionPayload, - Capella: bestSubmission.Capella.ExecutionPayload, + Bellatrix: nil, + Capella: nil, Deneb: bestSubmission.Deneb.ExecutionPayload, }