From d6fdbb8e7b362619d74fafed82f59f3b3a712844 Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Fri, 10 Feb 2023 13:53:08 +0700 Subject: [PATCH] e3: return list of e3 files by grpc (#6828) --- ethdb/privateapi/ethbackend.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethdb/privateapi/ethbackend.go b/ethdb/privateapi/ethbackend.go index 07fbb2433..9a3150ac9 100644 --- a/ethdb/privateapi/ethbackend.go +++ b/ethdb/privateapi/ethbackend.go @@ -11,7 +11,6 @@ import ( "github.com/holiman/uint256" "github.com/ledgerwatch/log/v3" - "google.golang.org/grpc" "google.golang.org/protobuf/types/known/emptypb" "github.com/ledgerwatch/erigon-lib/chain" @@ -293,7 +292,7 @@ func (s *EthBackendServer) checkWithdrawalsPresence(time uint64, withdrawals []* return nil } -func (s *EthBackendServer) EngineGetBlobsBundleV1(ctx context.Context, in *remote.EngineGetBlobsBundleRequest, opts ...grpc.CallOption) (*types2.BlobsBundleV1, error) { +func (s *EthBackendServer) EngineGetBlobsBundleV1(ctx context.Context, in *remote.EngineGetBlobsBundleRequest) (*types2.BlobsBundleV1, error) { return nil, fmt.Errorf("EngineGetBlobsBundleV1: not implemented yet") }