chore: format proto files (#17445)

Co-authored-by: marbar3778 <marbar3778@yahoo.com>
This commit is contained in:
Marko
2023-08-18 14:06:01 +00:00
committed by GitHub
co-authored by marbar3778
parent c48bf70288
commit 066f8a7a50
34 changed files with 213 additions and 234 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;
}