You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had this issue also in ibc-rs when trying to compile some IBC core services.
For example, with this addition:
diff --git a/proto-build/src/main.rs b/proto-build/src/main.rs
index 9d9591c..aeeb30d 100644
--- a/proto-build/src/main.rs
+++ b/proto-build/src/main.rs
@@ -161,6 +161,7 @@ fn compile_proto_services(out_dir: impl AsRef<Path>) {
sdk_dir.join("proto/cosmos/bank/v1beta1/query.proto"),
sdk_dir.join("proto/cosmos/tx/v1beta1/service.proto"),
sdk_dir.join("proto/cosmos/tx/v1beta1/tx.proto"),
+ sdk_dir.join("proto/ibc/core/channel/v1/query.proto"),
];
// List available paths for dependencies
and after cargo run some of the structures are missing from ../cosmos-sdk-proto/src/prost/ibc.core.channel.v1.rs (all Msg.. structs, GenesisState).
In ibc-rs we fixed this by doing the proto and service compilation with tonic see here
The text was updated successfully, but these errors were encountered:
We had this issue also in
ibc-rs
when trying to compile some IBC core services.For example, with this addition:
and after
cargo run
some of the structures are missing from../cosmos-sdk-proto/src/prost/ibc.core.channel.v1.rs
(allMsg..
structs,GenesisState
).In
ibc-rs
we fixed this by doing the proto and service compilation with tonic see hereThe text was updated successfully, but these errors were encountered: