Skip to content

Commit 9d9131b

Browse files
committed
Make grpc query fields public
1 parent 9662f73 commit 9d9131b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/std/src/query/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ pub struct GrpcQuery {
8585
/// The fully qualified endpoint path used for routing.
8686
/// It follows the format `/service_path/method_name`,
8787
/// eg. "/cosmos.authz.v1beta1.Query/Grants"
88-
path: String,
88+
pub path: String,
8989
/// The expected protobuf message type (not [Any](https://protobuf.dev/programming-guides/proto3/#any)), binary encoded
90-
data: Binary,
90+
pub data: Binary,
9191
}
9292

9393
/// A trait that is required to avoid conflicts with other query types like BankQuery and WasmQuery

0 commit comments

Comments
 (0)