tm_protos/protos/
tendermint.version.rs

1/// App includes the protocol and software version for the application.
2/// This information is included in ResponseInfo. The App.Protocol can be
3/// updated in ResponseEndBlock.
4#[allow(clippy::derive_partial_eq_without_eq)]
5#[derive(Clone, PartialEq, ::prost::Message)]
6pub struct App {
7    #[prost(uint64, tag = "1")]
8    pub protocol: u64,
9    #[prost(string, tag = "2")]
10    pub software: ::prost::alloc::string::String,
11}
12/// Consensus captures the consensus rules for processing a block in the blockchain,
13/// including all blockchain data structures and the rules of the application's
14/// state transition machine.
15#[allow(clippy::derive_partial_eq_without_eq)]
16#[derive(Clone, PartialEq, ::prost::Message)]
17pub struct Consensus {
18    #[prost(uint64, tag = "1")]
19    pub block: u64,
20    #[prost(uint64, tag = "2")]
21    pub app: u64,
22}