This commit is contained in:
itsdevbear 2024-02-20 12:50:59 -05:00
parent e1a742d576
commit 95be8c3b67
1 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,9 @@ import (
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types" "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" "github.com/ethereum/go-ethereum/rpc"
) )