github.com/Finschia/finschia-sdk@v0.49.1/proto/cosmos/slashing/v1beta1/tx.proto (about)

     1  syntax = "proto3";
     2  package cosmos.slashing.v1beta1;
     3  
     4  option go_package            = "github.com/Finschia/finschia-sdk/x/slashing/types";
     5  option (gogoproto.equal_all) = true;
     6  
     7  import "gogoproto/gogo.proto";
     8  
     9  // Msg defines the slashing Msg service.
    10  service Msg {
    11    // Unjail defines a method for unjailing a jailed validator, thus returning
    12    // them into the bonded validator set, so they can begin receiving provisions
    13    // and rewards again.
    14    rpc Unjail(MsgUnjail) returns (MsgUnjailResponse);
    15  }
    16  
    17  // MsgUnjail defines the Msg/Unjail request type
    18  message MsgUnjail {
    19    option (gogoproto.goproto_getters)  = false;
    20    option (gogoproto.goproto_stringer) = true;
    21  
    22    string validator_addr = 1 [(gogoproto.moretags) = "yaml:\"address\"", (gogoproto.jsontag) = "address"];
    23  }
    24  
    25  // MsgUnjailResponse defines the Msg/Unjail response type
    26  message MsgUnjailResponse {}