Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: expose the data root inclusion proof over gRPC #1603

Merged
merged 3 commits into from
Feb 5, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Revert "chore: remove starting grpc server"
This reverts commit 2dce24b.
rach-id committed Feb 4, 2025
commit c7f0868706e0776ce926704ff58c0b90fef8ab08
4 changes: 2 additions & 2 deletions rpc/grpc/client_server.go
Original file line number Diff line number Diff line change
@@ -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()
Loading