Skip to content

Commit

Permalink
Remove max recv and max send
Browse files Browse the repository at this point in the history
  • Loading branch information
captainyugi00 committed Oct 1, 2024
1 parent 325422d commit deae502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yellowstone-geyser/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func NewClient(
return nil, fmt.Errorf("failed to create Geyser Client")
}

subscribe, err := geyserClient.Subscribe(ctx, grpc.MaxCallRecvMsgSize(16*1024*1024), grpc.MaxCallSendMsgSize(16*1024*1024))
subscribe, err := geyserClient.Subscribe(ctx)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit deae502

Please sign in to comment.