In the Rust zip file this type is defined:
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TxResponseData {
#[prost(message, repeated, tag="1")]
pub messages: ::prost::alloc::vec::Vec<TxResponseGenericMessage>,
}
The correct definition seems to be to use tag 2 for messages:
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TxResponseData {
#[prost(message, repeated, tag="2")]
pub messages: ::prost::alloc::vec::Vec<TxResponseGenericMessage>,
}
In the Rust zip file this type is defined:
The correct definition seems to be to use tag 2 for
messages: