nibiru_std/proto/buf/
tendermint.version.rs

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