20 lines
523 B
Protocol Buffer
20 lines
523 B
Protocol Buffer
syntax = "proto3";
|
|
package mukan.poj.v1;
|
|
|
|
import "amino/amino.proto";
|
|
import "gogoproto/gogo.proto";
|
|
import "mukan/poj/v1/miner_state.proto";
|
|
import "mukan/poj/v1/params.proto";
|
|
|
|
option go_package = "mukan/x/poj/types";
|
|
|
|
// GenesisState defines the poj module's genesis state.
|
|
message GenesisState {
|
|
// params defines all the parameters of the module.
|
|
Params params = 1 [
|
|
(gogoproto.nullable) = false,
|
|
(amino.dont_omitempty) = true
|
|
];
|
|
|
|
repeated MinerState miner_states = 2 [(gogoproto.nullable) = false];
|
|
}
|