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(serverv2): integrate gRPC #21038

Merged
merged 14 commits into from
Jul 30, 2024
Merged

feat(serverv2): integrate gRPC #21038

merged 14 commits into from
Jul 30, 2024

Conversation

testinginprod
Copy link
Contributor

@testinginprod testinginprod commented Jul 23, 2024

Description

This PR Integrates gRPC in serverv2 leveraging grpc.UnknownServiceHandler to provide mapping between grpc methods and an appmanager query call.

closes: #20798


Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title, you can find examples of the prefixes below:
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

Please see Pull Request Reviewer section in the contributing guide for more information on how to review a pull request.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

Summary by CodeRabbit

  • New Features

    • Enhanced gRPC method handling with a new mapping method for simplified message generation.
    • Improved logging and service management for the server reflection functionality.
    • Introduction of new constants for managing gRPC metadata.
  • Bug Fixes

    • Streamlined handling of unknown gRPC services and improved error handling.
  • Refactor

    • Renamed and updated methods and structures for clarity and consistency.
    • Simplified the decoding process by eliminating the need for input parameters in gRPC method functions.
  • Chores

    • Updated dependency management for better control and clarity on required packages.

Copy link
Contributor

coderabbitai bot commented Jul 23, 2024

Walkthrough

Walkthrough

The changes present a significant refactor of gRPC method handling in the application, simplifying the interface by removing the need for byte slice inputs in decoding functions. Key methods and structures were renamed to reflect this streamlined approach, enhancing code clarity and maintainability while improving the functionality associated with gRPC interactions.

Changes

Files Change Summary
runtime/v2/app.go Renamed GRPCQueryDecoders to GRPCMethodsToMessageMap, updated function signatures to remove input parameters, simplifying gRPC method handling.
runtime/v2/manager.go Updated grpcQueryDecoders in configurator to a new signature, reflecting changes in how gRPC methods are processed.
runtime/v2/module.go Added GRPCMethodsToMessageMap to App struct for structured mapping of gRPC methods to message types, improving organization.
server/v2/api/grpc/* Renamed GRPCServer to Server, added new constants, and enhanced error handling and service management in the gRPC server implementations.
server/v2/cometbft/* Removed legacy grpcQueryDecoders, introduced grpcMethodsMap for a new gRPC handling approach, enhancing clarity and efficiency.
server/v2/go.mod Added direct dependency for golang.org/x/exp, improving control over dependency management.
server/v2/types.go Updated AppI interface to replace GetGRPCQueryDecoders with GetGPRCMethodsToMessageMap, altering the method signature for simpler interaction with gRPC methods.

Sequence Diagram(s)

sequenceDiagram
    participant App
    participant Server
    participant Client

    Client->>Server: gRPC Request
    Server->>App: Retrieve Method Mapping
    App-->>Server: Return Message Map
    Server->>Server: Call Message Function
    Server-->>Client: Send Response
Loading

Assessment against linked issues

Objective Addressed Explanation
Wire gRPC and gateway for querying (#20798)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@kocubinski kocubinski self-assigned this Jul 25, 2024
# Conflicts:
#	server/v2/cometbft/server.go
@testinginprod testinginprod marked this pull request as ready for review July 29, 2024 09:27
@testinginprod testinginprod requested a review from a team as a code owner July 29, 2024 09:27
Copy link
Contributor

@testinginprod your pull request is missing a changelog!

runtime/v2/go.mod Outdated Show resolved Hide resolved
Copy link
Member

@tac0turtle tac0turtle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

left a few comments, but overall looks good, we should avoid the comet import if we can

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between e7b6d73 and 422ea8d.

Files ignored due to path filters (1)
  • runtime/v2/go.sum is excluded by !**/*.sum
Files selected for processing (10)
  • runtime/v2/app.go (2 hunks)
  • runtime/v2/go.mod (5 hunks)
  • runtime/v2/manager.go (4 hunks)
  • runtime/v2/module.go (1 hunks)
  • server/v2/api/grpc/gogoreflection/serverreflection.go (9 hunks)
  • server/v2/api/grpc/server.go (5 hunks)
  • server/v2/cometbft/abci.go (5 hunks)
  • server/v2/cometbft/server.go (1 hunks)
  • server/v2/go.mod (2 hunks)
  • server/v2/types.go (1 hunks)
Files skipped from review due to trivial changes (1)
  • runtime/v2/go.mod
Additional context used
Path-based instructions (8)
server/v2/types.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

runtime/v2/app.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/api/grpc/server.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

runtime/v2/module.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/cometbft/server.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/api/grpc/gogoreflection/serverreflection.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/cometbft/abci.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

runtime/v2/manager.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Additional comments not posted (24)
server/v2/types.go (1)

20-20: LGTM! But verify the method usage in the codebase.

The code changes are approved.

However, ensure that all implementations of AppI interface are updated to accommodate the new method signature.

Verification successful

Verified: The method GetGPRCMethodsToMessageMap is correctly implemented and used in the codebase.

The method GetGPRCMethodsToMessageMap is defined and used in the following files:

  • server/v2/types.go
  • server/v2/cometbft/server.go
  • server/v2/api/grpc/server.go
  • runtime/v2/app.go

All occurrences reflect the new method signature and its intended usage.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify all implementations of `AppI` interface have updated `GetGPRCMethodsToMessageMap` method.

# Test: Search for the method usage. Expect: Only occurrences of the new method signature.
rg --type go -A 5 $'GetGPRCMethodsToMessageMap'

Length of output: 1113

runtime/v2/app.go (2)

47-49: LGTM!

The renaming of GRPCQueryDecoders to GRPCMethodsToMessageMap simplifies the interface and improves clarity.


121-122: LGTM! But verify the method usage in the codebase.

The code changes are approved.

However, ensure that all calls to GetGPRCMethodsToMessageMap match the new signature.

server/v2/go.mod (1)

41-41: LGTM!

The addition of golang.org/x/exp as a direct requirement improves clarity and control over the dependency versioning.

server/v2/api/grpc/server.go (9)

26-29: LGTM! Constants for managing gRPC metadata and configuration options.

The addition of BlockHeightHeader and FlagAddress constants is a good practice for managing gRPC metadata and configuration options.


Line range hint 31-38:
LGTM! Renaming GRPCServer to Server improves clarity.

The renaming of GRPCServer to Server enhances clarity and consistency. The struct fields are well-defined and necessary for the server's functionality.


40-44: LGTM! New function correctly initializes the Server instance.

The New function is straightforward and correctly initializes the Server struct with the provided configuration options.


Line range hint 48-74:
LGTM! Init function correctly initializes the gRPC server.

The Init function is well-structured and correctly initializes the gRPC server with the provided application interface, configuration, and logger. The new handler for unknown gRPC services enhances flexibility.


76-88: LGTM! StartCmdFlags function facilitates runtime configuration.

The StartCmdFlags function defines command-line flags specific to the gRPC server, facilitating its configuration at runtime.


90-128: LGTM! makeUnknownServiceHandler enhances flexibility in managing gRPC calls.

The makeUnknownServiceHandler function is well-designed and enhances the server's flexibility in managing gRPC calls by dynamically handling incoming requests based on the method name.


130-150: LGTM! getHeightFromCtx function handles block height metadata.

The getHeightFromCtx function is useful for retrieving and validating the block height from the incoming context, ensuring proper handling of requests that depend on this metadata.


Line range hint 170-195:
LGTM! Start function correctly starts the gRPC server.

The Start function is well-implemented and correctly handles the startup process of the gRPC server.


Line range hint 197-202:
LGTM! Stop function gracefully stops the gRPC server.

The Stop function is well-implemented and correctly handles the graceful shutdown of the gRPC server.

runtime/v2/module.go (1)

138-138: LGTM! GRPCMethodsToMessageMap field enhances gRPC method management.

The addition of the GRPCMethodsToMessageMap field to the App struct provides a structured way to manage gRPC method-to-message associations, enhancing the application's ability to handle gRPC methods.

server/v2/cometbft/server.go (1)

83-83: LGTM! Updated Init function enhances gRPC method handling.

The modification in the Init function to use appI.GetGPRCMethodsToMessageMap() instead of appI.GetGRPCQueryDecoders() likely improves the way gRPC methods are handled or mapped within the server's initialization process, enhancing the server's capability to process gRPC-related tasks.

server/v2/api/grpc/gogoreflection/serverreflection.go (4)

67-72: Enhancements to serverReflectionServer struct look good.

The addition of methods and log fields enhances the functionality by allowing method tracking and structured logging.


76-80: Updates to Register function are appropriate.

The new parameters methods and logger align with the enhancements to the serverReflectionServer struct, enabling method tracking and structured logging.


96-98: Refactor in getSymbols method is well-implemented.

The use of the new getServices method to retrieve services and file descriptors streamlines the process and enhances code clarity and maintainability.


480-502: Addition of getServices method is a valuable enhancement.

The method efficiently retrieves service names and file descriptors, processes method names, and includes proper error handling and logging.

server/v2/cometbft/abci.go (3)

63-63: Updates to Consensus struct are beneficial.

The removal of grpcQueryDecoders and the addition of grpcMethodsMap simplify gRPC handling by mapping method paths to message creator functions, improving clarity and efficiency.


Line range hint 73-82: Changes to NewConsensus constructor are appropriate.

The acceptance of gRPCMethodsMap instead of grpcQueryDecoders aligns with the updates to the Consensus struct, ensuring consistency and improving the initialization process.


177-180: Updates to Query method improve clarity and efficiency.

The method now uses grpcMethodsMap for handling gRPC requests, calling a function from the map to create the appropriate message type, followed by unmarshalling the request data into that message.

runtime/v2/manager.go (2)

582-582: Simplification of grpcQueryDecoders in configurator struct is beneficial.

The map now returns a gogoproto.Message without any parameters, simplifying the decoder functions by removing the need to handle byte slices directly, likely improving performance and reducing complexity.


570-573: Refinement in registerServices function is well-implemented.

The function now merges grpcQueryDecoders into app.GRPCMethodsToMessageMap, suggesting a more refined approach to managing gRPC method mappings and improving the handling of message types.

Comment on lines +571 to +573
for path, decoder := range c.grpcQueryDecoders {
app.GRPCMethodsToMessageMap[path] = decoder
}

Check warning

Code scanning / CodeQL

Iteration over map Warning

Iteration over map may be a possible source of non-determinism
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 422ea8d and 9308ae7.

Files selected for processing (2)
  • server/v2/api/grpc/gogoreflection/serverreflection.go (8 hunks)
  • server/v2/api/grpc/server.go (5 hunks)
Files skipped from review as they are similar to previous changes (1)
  • server/v2/api/grpc/server.go
Additional context used
Path-based instructions (1)
server/v2/api/grpc/gogoreflection/serverreflection.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Additional comments not posted (5)
server/v2/api/grpc/gogoreflection/serverreflection.go (5)

47-60: Imports look good.

The new imports are necessary for the added functionalities.


67-72: Struct changes are appropriate.

The addition of methods and log fields enhances the server's ability to manage method descriptors and log relevant information.


76-80: Register function changes are valid.

The additional parameters methods and logger are necessary to initialize the new fields in the serverReflectionServer struct.


95-97: Refactor in getSymbols method is effective.

The use of the getServices method enhances clarity and maintainability.


210-213: Unmarshalling change is consistent.

Switching to gogoproto.Unmarshal ensures consistency with the new library.

Comment on lines +479 to +501
func (s *serverReflectionServer) getServices(methods []string) (svcs []string, fds []*dpb.FileDescriptorProto) {
registry, err := gogoproto.MergedRegistry()
if err != nil {
s.log.Error("unable to load merged registry", "err", err)
return nil, nil
}
seenSvc := map[protoreflect.FullName]struct{}{}
for _, methodName := range methods {
methodName = strings.Join(strings.Split(methodName[1:], "/"), ".")
md, err := registry.FindDescriptorByName(protoreflect.FullName(methodName))
if err != nil {
s.log.Error("unable to load method descriptor", "method", methodName, "err", err)
continue
}
svc := md.(protoreflect.MethodDescriptor).Parent()
if _, seen := seenSvc[svc.FullName()]; !seen {
svcs = append(svcs, string(svc.FullName()))
file := svc.ParentFile()
fds = append(fds, protodesc.ToFileDescriptorProto(file))
}
}
return
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Improve error handling and optimize getServices method.

The getServices method is well-structured but can be improved by handling errors more effectively and optimizing the conversion of method names.

-	for _, methodName := range methods {
-		methodName = strings.Join(strings.Split(methodName[1:], "/"), ".")
+	for _, method := range methods {
+		methodName := strings.ReplaceAll(method[1:], "/", ".")

Additionally, consider logging the successful retrieval of method descriptors for better traceability.

+		s.log.Info("successfully retrieved method descriptor", "method", methodName)

Copy link
Member

@julienrbrt julienrbrt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙌

@github-actions github-actions bot added the C:server/v2 Issues related to server/v2 label Jul 30, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9308ae7 and 02d7289.

Files selected for processing (2)
  • server/v2/api/grpc/gogoreflection/serverreflection.go (8 hunks)
  • server/v2/server_test.go (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • server/v2/api/grpc/gogoreflection/serverreflection.go
Additional context used
Path-based instructions (1)
server/v2/server_test.go (2)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.


Pattern **/*_test.go: "Assess the unit test code assessing sufficient code coverage for the changes associated in the pull request"

Additional comments not posted (1)
server/v2/server_test.go (1)

41-43: LGTM!

The method correctly returns nil for a mock implementation.

Comment on lines +37 to +39
func (*mockApp[T]) GetGPRCMethodsToMessageMap() map[string]func() gogoproto.Message {
return map[string]func() gogoproto.Message{}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct the typo in the method name.

The method name should be GetGRPCMethodsToMessageMap instead of GetGPRCMethodsToMessageMap.

- func (*mockApp[T]) GetGPRCMethodsToMessageMap() map[string]func() gogoproto.Message {
+ func (*mockApp[T]) GetGRPCMethodsToMessageMap() map[string]func() gogoproto.Message {
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
func (*mockApp[T]) GetGPRCMethodsToMessageMap() map[string]func() gogoproto.Message {
return map[string]func() gogoproto.Message{}
}
func (*mockApp[T]) GetGRPCMethodsToMessageMap() map[string]func() gogoproto.Message {
return map[string]func() gogoproto.Message{}
}

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 02d7289 and d6f6d7d.

Files selected for processing (4)
  • schema/appdata/mux_test.go (1 hunks)
  • server/v2/api/grpc/gogoreflection/serverreflection.go (9 hunks)
  • server/v2/api/grpc/server.go (5 hunks)
  • server/v2/server_test.go (2 hunks)
Files skipped from review due to trivial changes (1)
  • schema/appdata/mux_test.go
Files skipped from review as they are similar to previous changes (1)
  • server/v2/server_test.go
Additional context used
Path-based instructions (2)
server/v2/api/grpc/server.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/api/grpc/gogoreflection/serverreflection.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Additional comments not posted (16)
server/v2/api/grpc/server.go (8)

Line range hint 31-37:
LGTM! Struct definition is clear and well-defined.

The Server struct is appropriately defined with necessary fields.


40-44: LGTM! Function implementation is correct.

The New function correctly initializes and returns a new Server instance.


Line range hint 48-74:
LGTM! Function implementation is robust.

The Init function correctly initializes the gRPC server with configuration, methods mapping, and reflection.


76-88: LGTM! Function implementation is well-structured.

The StartCmdFlags function correctly defines command-line flags for the gRPC server.


90-129: LGTM! Function implementation is robust.

The makeUnknownServiceHandler function correctly handles unknown gRPC service requests with proper error handling and request-response cycle management.


131-151: LGTM! Function implementation is correct.

The getHeightFromCtx function correctly retrieves and validates the block height from the incoming context.


Line range hint 171-197:
LGTM! Function implementation is robust.

The Start function correctly starts the gRPC server with proper error handling and non-blocking behavior.


Line range hint 198-205:
LGTM! Function implementation is correct.

The Stop function correctly stops the gRPC server gracefully with proper logging.

server/v2/api/grpc/gogoreflection/serverreflection.go (8)

59-72: LGTM! Struct definition is clear and well-defined.

The serverReflectionServer struct is appropriately defined with new fields for methods and logging, enhancing functionality and logging capabilities.


75-80: LGTM! Function implementation is correct.

The Register function correctly initializes the serverReflectionServer instance with methods and logger parameters.


Line range hint 93-107:
LGTM! Function implementation is robust.

The getSymbols function correctly retrieves service names and file descriptors using the new getServices method, improving clarity and maintainability.


Line range hint 108-126:
LGTM! Function implementation is correct.

The processFile function correctly processes file descriptors and their dependencies.


Line range hint 208-215:
LGTM! Function implementation is correct.

The decodeFileDesc function correctly decodes and decompresses file descriptors with proper error handling.


Line range hint 273-290:
LGTM! Function implementation is correct.

The fileDescWithDependencies function correctly returns file descriptors and their dependencies.


Line range hint 342-458:
LGTM! Function implementation is robust.

The ServerReflectionInfo function correctly handles server reflection requests with proper handling of different types of reflection requests.


461-483: LGTM! Function implementation is correct.

The getServices function correctly retrieves services based on method names with proper error handling and logging.

@tac0turtle tac0turtle added this pull request to the merge queue Jul 30, 2024
Merged via the queue into main with commit 8b47141 Jul 30, 2024
76 checks passed
@tac0turtle tac0turtle deleted the tip/serverv2/grpc branch July 30, 2024 09:30
@julienrbrt
Copy link
Member

@mergify backport release/v0.52.x

Copy link
Contributor

mergify bot commented Jul 31, 2024

backport release/v0.52.x

✅ Backports have been created

mergify bot pushed a commit that referenced this pull request Jul 31, 2024
Co-authored-by: Marko <[email protected]>
Co-authored-by: marbar3778 <[email protected]>
(cherry picked from commit 8b47141)

# Conflicts:
#	schema/appdata/mux_test.go
#	server/v2/cometbft/server.go
#	server/v2/go.mod
julienrbrt added a commit that referenced this pull request Jul 31, 2024
Co-authored-by: testinginprod <[email protected]>
Co-authored-by: Julien Robert <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

server/v2: wire grpc and gateway
5 participants