Skip to content

Commit

Permalink
chore: remove starting grpc server
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Feb 4, 2025
1 parent 26db8cc commit 2dce24b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpc/grpc/client_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ func StartGRPCServer(ln net.Listener) error {
RegisterBroadcastAPIServer(grpcServer, &broadcastAPI{})
blockAPI := NewBlockAPI()
RegisterBlockAPIServer(grpcServer, blockAPI)
blobstreamAPI := NewBlobstreamAPI()
RegisterBlobstreamAPIServer(grpcServer, blobstreamAPI)
//blobstreamAPI := NewBlobstreamAPI()
//RegisterBlobstreamAPIServer(grpcServer, blobstreamAPI)
errCh := make(chan error, 2)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
Expand Down

0 comments on commit 2dce24b

Please sign in to comment.