From 20c3cf551da8374483584de8405da0e07ac5f866 Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Wed, 25 Sep 2024 16:25:32 -0500 Subject: [PATCH] Remove toolchain from go.mod --- common/types_spec.go | 1 + go.mod | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common/types_spec.go b/common/types_spec.go index 4b2cd6c5..7e2e654d 100644 --- a/common/types_spec.go +++ b/common/types_spec.go @@ -304,6 +304,7 @@ func ElectraUnblindSignedBlock(blindedBlock *eth2ApiV1Electra.SignedBlindedBeaco ExecutionPayload: blockPayload.ExecutionPayload, BLSToExecutionChanges: blindedBlock.Message.Body.BLSToExecutionChanges, BlobKZGCommitments: blindedBlock.Message.Body.BlobKZGCommitments, + ExecutionRequests: blindedBlock.Message.Body.ExecutionRequests, }, }, Signature: blindedBlock.Signature, diff --git a/go.mod b/go.mod index d7871a90..d8777aa0 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/flashbots/mev-boost-relay go 1.22 -toolchain go1.23.1 - require ( github.com/NYTimes/gziphandler v1.1.1 github.com/alicebob/miniredis/v2 v2.32.1