pub trait Msg: 'static + Send + Sync {
    fn unjail<'life0, 'async_trait>(
        &'life0 self,
        request: Request<MsgUnjail>
    ) -> Pin<Box<dyn Future<Output = Result<Response<MsgUnjailResponse>, Status>> + Send + 'async_trait, Global>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

Generated trait containing gRPC methods that should be implemented for use with MsgServer.

Required Methods

Unjail defines a method for unjailing a jailed validator, thus returning them into the bonded validator set, so they can begin receiving provisions and rewards again.

Implementors