Skip to content

Commit

Permalink
fix: proto format/lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shifty11 committed Apr 15, 2024
1 parent af50dcd commit 9cb82d8
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 32 deletions.
1 change: 1 addition & 0 deletions proto/buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ lint:
- SERVICE_SUFFIX
- PACKAGE_VERSION_SUFFIX
- RPC_REQUEST_STANDARD_NAME
- RPC_RESPONSE_STANDARD_NAME
ignore:
- tendermint
use:
Expand Down
6 changes: 2 additions & 4 deletions proto/kyve/bundles/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "github.com/KYVENetwork/chain/x/bundles"
};
option (cosmos.app.v1alpha1.module) = {go_import: "github.com/KYVENetwork/chain/x/bundles"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/delegation/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/delegation"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/delegation"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/funders/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/funders"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/funders"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/global/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/global"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/global"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/pool/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/pool"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/pool"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/query/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/query"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/query"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/stakers/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/stakers"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/stakers"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}
6 changes: 2 additions & 4 deletions proto/kyve/team/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import "cosmos/app/v1alpha1/module.proto";

// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "kyve/x/team"
};
option (cosmos.app.v1alpha1.module) = {go_import: "kyve/x/team"};

// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}
}

0 comments on commit 9cb82d8

Please sign in to comment.