diff --git a/proto/src/prost/tendermint.abci.rs b/proto/src/prost/tendermint.abci.rs index 6bb352dff..bb6b25f43 100644 --- a/proto/src/prost/tendermint.abci.rs +++ b/proto/src/prost/tendermint.abci.rs @@ -82,8 +82,6 @@ pub struct RequestInitChain { pub validators: ::std::vec::Vec, #[prost(bytes, tag="5")] pub app_state_bytes: std::vec::Vec, - #[prost(int64, tag="6")] - pub initial_height: i64, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct RequestQuery { @@ -250,8 +248,6 @@ pub struct ResponseInitChain { pub consensus_params: ::std::option::Option, #[prost(message, repeated, tag="2")] pub validators: ::std::vec::Vec, - #[prost(bytes, tag="3")] - pub app_hash: std::vec::Vec, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct ResponseQuery { diff --git a/proto/src/prost/tendermint.privval.rs b/proto/src/prost/tendermint.privval.rs index 720750514..c36bf41d6 100644 --- a/proto/src/prost/tendermint.privval.rs +++ b/proto/src/prost/tendermint.privval.rs @@ -8,8 +8,6 @@ pub struct RemoteSignerError { /// PubKeyRequest requests the consensus public key from the remote signer. #[derive(Clone, PartialEq, ::prost::Message)] pub struct PubKeyRequest { - #[prost(string, tag="1")] - pub chain_id: std::string::String, } /// PubKeyResponse is a response message containing the public key. #[derive(Clone, PartialEq, ::prost::Message)] @@ -24,8 +22,6 @@ pub struct PubKeyResponse { pub struct SignVoteRequest { #[prost(message, optional, tag="1")] pub vote: ::std::option::Option, - #[prost(string, tag="2")] - pub chain_id: std::string::String, } /// SignedVoteResponse is a response containing a signed vote or an error #[derive(Clone, PartialEq, ::prost::Message)] @@ -40,8 +36,6 @@ pub struct SignedVoteResponse { pub struct SignProposalRequest { #[prost(message, optional, tag="1")] pub proposal: ::std::option::Option, - #[prost(string, tag="2")] - pub chain_id: std::string::String, } /// SignedProposalResponse is response containing a signed proposal or an error #[derive(Clone, PartialEq, ::prost::Message)] diff --git a/proto/src/prost/tendermint.state.rs b/proto/src/prost/tendermint.state.rs index 0d98c412e..31f3f2539 100644 --- a/proto/src/prost/tendermint.state.rs +++ b/proto/src/prost/tendermint.state.rs @@ -40,8 +40,6 @@ pub struct State { /// immutable #[prost(string, tag="2")] pub chain_id: std::string::String, - #[prost(int64, tag="14")] - pub initial_height: i64, /// LastBlockHeight=0 at genesis (ie. block(H=0) does not exist) #[prost(int64, tag="3")] pub last_block_height: i64, diff --git a/proto/src/prost/tendermint.types.rs b/proto/src/prost/tendermint.types.rs index f5bc42660..bd919b619 100644 --- a/proto/src/prost/tendermint.types.rs +++ b/proto/src/prost/tendermint.types.rs @@ -300,8 +300,6 @@ pub struct DuplicateVoteEvidence { pub vote_a: ::std::option::Option, #[prost(message, optional, tag="2")] pub vote_b: ::std::option::Option, - #[prost(message, optional, tag="3")] - pub timestamp: ::std::option::Option<::prost_types::Timestamp>, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct PotentialAmnesiaEvidence { @@ -311,8 +309,6 @@ pub struct PotentialAmnesiaEvidence { pub vote_b: ::std::option::Option, #[prost(int64, tag="3")] pub height_stamp: i64, - #[prost(message, optional, tag="4")] - pub timestamp: ::std::option::Option<::prost_types::Timestamp>, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct AmnesiaEvidence { @@ -336,8 +332,6 @@ pub struct LunaticValidatorEvidence { pub vote: ::std::option::Option, #[prost(string, tag="3")] pub invalid_header_field: std::string::String, - #[prost(message, optional, tag="4")] - pub timestamp: ::std::option::Option<::prost_types::Timestamp>, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct Evidence {