Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2dce24b

Browse files
committedFeb 4, 2025·
chore: remove starting grpc server
1 parent 26db8cc commit 2dce24b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎rpc/grpc/client_server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ func StartGRPCServer(ln net.Listener) error {
2525
RegisterBroadcastAPIServer(grpcServer, &broadcastAPI{})
2626
blockAPI := NewBlockAPI()
2727
RegisterBlockAPIServer(grpcServer, blockAPI)
28-
blobstreamAPI := NewBlobstreamAPI()
29-
RegisterBlobstreamAPIServer(grpcServer, blobstreamAPI)
28+
//blobstreamAPI := NewBlobstreamAPI()
29+
//RegisterBlobstreamAPIServer(grpcServer, blobstreamAPI)
3030
errCh := make(chan error, 2)
3131
ctx, cancel := context.WithCancel(context.Background())
3232
defer cancel()

0 commit comments

Comments
 (0)
Please sign in to comment.