Skip to content

Commit

Permalink
fix: stable marshaler options
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Jan 21, 2025
1 parent 5235822 commit 6d9c3d9
Show file tree
Hide file tree
Showing 14 changed files with 157 additions and 170 deletions.
25 changes: 13 additions & 12 deletions api/poktroll/migration/genesis.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 24 additions & 21 deletions api/poktroll/migration/module/module.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions api/poktroll/migration/params.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions api/poktroll/migration/query.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions api/poktroll/migration/tx.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions proto/poktroll/migration/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "gogoproto/gogo.proto";
import "poktroll/migration/params.proto";

option go_package = "github.com/pokt-network/poktroll/x/migration/types";
option (gogoproto.stable_marshaler_all) = true;

// GenesisState defines the migration module's genesis state.
message GenesisState {
Expand Down
5 changes: 4 additions & 1 deletion proto/poktroll/migration/module/module.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
syntax = "proto3";
package poktroll.migration.module;

option (gogoproto.stable_marshaler_all) = true;

import "cosmos/app/v1alpha1/module.proto";
import "gogoproto/gogo.proto";

// Module is the config object for the module.
message Module {
Expand All @@ -11,4 +14,4 @@ message Module {

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
1 change: 1 addition & 0 deletions proto/poktroll/migration/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import "amino/amino.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/pokt-network/poktroll/x/migration/types";
option (gogoproto.stable_marshaler_all) = true;

// Params defines the parameters for the module.
message Params {
Expand Down
1 change: 1 addition & 0 deletions proto/poktroll/migration/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "cosmos/base/query/v1beta1/pagination.proto";
import "poktroll/migration/params.proto";

option go_package = "github.com/pokt-network/poktroll/x/migration/types";
option (gogoproto.stable_marshaler_all) = true;

// Query defines the gRPC querier service.
service Query {
Expand Down
1 change: 1 addition & 0 deletions proto/poktroll/migration/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "gogoproto/gogo.proto";
import "poktroll/migration/params.proto";

option go_package = "github.com/pokt-network/poktroll/x/migration/types";
option (gogoproto.stable_marshaler_all) = true;

// Msg defines the Msg service.
service Msg {
Expand Down
Loading

0 comments on commit 6d9c3d9

Please sign in to comment.