github.com/Finschia/finschia-sdk@v0.48.1/proto/cosmos/crisis/v1beta1/genesis.proto (about)

     1  syntax = "proto3";
     2  package cosmos.crisis.v1beta1;
     3  
     4  option go_package = "github.com/Finschia/finschia-sdk/x/crisis/types";
     5  
     6  import "gogoproto/gogo.proto";
     7  import "cosmos/base/v1beta1/coin.proto";
     8  
     9  // GenesisState defines the crisis module's genesis state.
    10  message GenesisState {
    11    // constant_fee is the fee used to verify the invariant in the crisis
    12    // module.
    13    cosmos.base.v1beta1.Coin constant_fee = 3
    14        [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"constant_fee\""];
    15  }