-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Interchain Security protos to include Permissionless ICS chang…
…es (#234) * Update Interchain Security protos to include Permissionless ICS changes * Re-export well-known-types from tendermint-proto * Update ICS protos * Add changelog entry * Fix tonic to v0.12.3 and remove unnecessary Cargo.lock --------- Co-authored-by: Luca Joss <luca@informal.systems>
- Loading branch information
Showing
32 changed files
with
4,963 additions
and
3,079 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/breaking-changes/245-interchain-security-proto-v6.1.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Update `interchain-security` to v6.1.0 | ||
([\#245](https://github.com/cosmos/ibc-proto-rs/issues/245)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ea545b490b53b8e6f422492b4fb2820ab0bc140b | ||
1e60637f9d8f3505208282416abfbb87fabc4795 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// This file is @generated by prost-build. | ||
/// Equivocation implements the Evidence interface and defines evidence of double | ||
/// signing misbehavior. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct Equivocation { | ||
/// height is the equivocation height. | ||
#[prost(int64, tag = "1")] | ||
pub height: i64, | ||
/// time is the equivocation time. | ||
#[prost(message, optional, tag = "2")] | ||
pub time: ::core::option::Option<::tendermint_proto::google::protobuf::Timestamp>, | ||
/// power is the equivocation validator power. | ||
#[prost(int64, tag = "3")] | ||
pub power: i64, | ||
/// consensus_address is the equivocation validator consensus address. | ||
#[prost(string, tag = "4")] | ||
pub consensus_address: ::prost::alloc::string::String, | ||
} | ||
impl ::prost::Name for Equivocation { | ||
const NAME: &'static str = "Equivocation"; | ||
const PACKAGE: &'static str = "cosmos.evidence.v1beta1"; | ||
fn full_name() -> ::prost::alloc::string::String { | ||
"cosmos.evidence.v1beta1.Equivocation".into() | ||
} | ||
fn type_url() -> ::prost::alloc::string::String { | ||
"/cosmos.evidence.v1beta1.Equivocation".into() | ||
} | ||
} |
Oops, something went wrong.