Add proper support for Any in gRPC queries (#6594)

* Add proper gRPC Any support via AnyUnpacker

* Wire up grpc query router AnyUnpacker
This commit is contained in:
Aaron Craelius
2020-07-03 16:42:12 +00:00
committed by GitHub
parent 4f3efaded4
commit 849429ecda
13 changed files with 600 additions and 74 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ const (
func TestPagination(t *testing.T) {
app, ctx, _ := setupTest()
queryHelper := baseapp.NewQueryServerTestHelper(ctx)
queryHelper := baseapp.NewQueryServerTestHelper(ctx, app.InterfaceRegistry())
types.RegisterQueryServer(queryHelper, app.BankKeeper)
queryClient := types.NewQueryClient(queryHelper)