Struct cosmos_sdk_proto::cosmos::slashing::v1beta1::ValidatorSigningInfo[][src]

pub struct ValidatorSigningInfo {
    pub address: String,
    pub start_height: i64,
    pub index_offset: i64,
    pub jailed_until: Option<Timestamp>,
    pub tombstoned: bool,
    pub missed_blocks_counter: i64,
}

ValidatorSigningInfo defines a validator’s signing info for monitoring their liveness activity.

Fields

address: Stringstart_height: i64

height at which validator was first a candidate OR was unjailed

index_offset: i64

index offset into signed block bit array

jailed_until: Option<Timestamp>

timestamp validator cannot be unjailed until

tombstoned: bool

whether or not a validator has been tombstoned (killed out of validator set)

missed_blocks_counter: i64

missed blocks counter (to avoid scanning the array every time)

Trait Implementations

impl Clone for ValidatorSigningInfo[src]

impl Debug for ValidatorSigningInfo[src]

impl Default for ValidatorSigningInfo[src]

impl Message for ValidatorSigningInfo[src]

impl PartialEq<ValidatorSigningInfo> for ValidatorSigningInfo[src]

impl StructuralPartialEq for ValidatorSigningInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]