Lorenz Herzberger 3bb8994e41
wip: trying to get machine e2e tests to run
Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
2024-06-17 12:08:02 +02:00

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
];
}