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
/// A Stargate message encoded the same way as a protobuf [Any](https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto).
37
-
/// This is the same structure as messages in `TxBody` from [ADR-020](https://github.com/cosmos/cosmos-sdk/blob/master/docs/architecture/adr-020-protobuf-transaction-encoding.md)
38
-
#[cfg(feature = "stargate")]
39
-
Stargate{
40
-
type_url:String,
41
-
value:Binary,
42
-
},
43
36
Any(AnyMsg),
44
37
#[cfg(feature = "stargate")]
45
38
Ibc(IbcMsg),
@@ -121,6 +114,8 @@ pub enum DistributionMsg {
121
114
},
122
115
}
123
116
117
+
/// A message encoded the same way as a protobuf [Any](https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto).
118
+
/// This is the same structure as messages in `TxBody` from [ADR-020](https://github.com/cosmos/cosmos-sdk/blob/master/docs/architecture/adr-020-protobuf-transaction-encoding.md)
0 commit comments