From 95be8c3b672134378f792732ffe3a82d68d20352 Mon Sep 17 00:00:00 2001 From: itsdevbear Date: Tue, 20 Feb 2024 12:50:59 -0500 Subject: [PATCH] bet --- ethclient/ethclient.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ethclient/ethclient.go b/ethclient/ethclient.go index 04546eaf53..484d015e74 100644 --- a/ethclient/ethclient.go +++ b/ethclient/ethclient.go @@ -28,7 +28,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" - _ "github.com/ethereum/go-ethereum/ethclient/engineclient" // Register the ethclient codec + + // Temporary to get engineclient to compile for testing. Will remove + _ "github.com/ethereum/go-ethereum/ethclient/engineclient" "github.com/ethereum/go-ethereum/rpc" )