mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-07-09 14:02:30 +00:00
18 lines
464 B
Protocol Buffer
18 lines
464 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.machine;
|
|
|
|
import "amino/amino.proto";
|
|
import "gogoproto/gogo.proto";
|
|
import "planetmintgo/machine/params.proto";
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/machine/types";
|
|
|
|
// GenesisState defines the machine module's genesis state.
|
|
message GenesisState {
|
|
// params defines all the parameters of the module.
|
|
Params params = 1 [
|
|
(gogoproto.nullable) = false,
|
|
(amino.dont_omitempty) = true
|
|
];
|
|
}
|