mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
4087941691
the yaml tags are not needed as they are generated automatically from the json tags. additionally fixed proto formatting error requiring doc comments on enum values (for x/incentive claim type enum).
16 lines
488 B
Protocol Buffer
16 lines
488 B
Protocol Buffer
syntax = "proto3";
|
|
package kava.kavadist.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
import "kava/kavadist/v1beta1/params.proto";
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/kavadist/types";
|
|
|
|
// GenesisState defines the kavadist module's genesis state.
|
|
message GenesisState {
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
|
|
google.protobuf.Timestamp previous_block_time = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
|
}
|