chore: format proto files (backport #17445) (#17447)

Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
mergify[bot]
2023-08-18 17:01:43 +02:00
committed by GitHub
co-authored by Marko Julien Robert
parent 27547306f5
commit 657add7a8a
33 changed files with 209 additions and 229 deletions
+5 -5
View File
@@ -19,8 +19,8 @@ service Msg {
message MsgCreateDog {
option (cosmos.msg.v1.signer) = "owner";
testpb.Dog dog = 1;
string owner = 2;
testpb.Dog dog = 1;
string owner = 2;
}
message MsgCreateDogResponse {
@@ -30,9 +30,9 @@ message MsgCreateDogResponse {
// TestMsg is msg type for testing protobuf message using any, as defined in
// https://github.com/cosmos/cosmos-sdk/issues/6213.
message TestMsg {
option (cosmos.msg.v1.signer) = "signers";
option (cosmos.msg.v1.signer) = "signers";
option (gogoproto.goproto_getters) = false;
option (amino.name) = "testpb/TestMsg";
option (amino.name) = "testpb/TestMsg";
repeated string signers = 1;
repeated string signers = 1;
}