From 911c023af91c90cdbc846e0e7dfeca980611e20e Mon Sep 17 00:00:00 2001 From: Daniel Wedul Date: Thu, 12 Oct 2023 12:00:47 -0600 Subject: [PATCH] [1658]: Fix the field comments in MsgMarketManageReqAttrsRequest. --- docs/proto-docs.md | 6 +++--- proto/provenance/exchange/v1/tx.proto | 6 +++--- x/exchange/tx.pb.go | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/proto-docs.md b/docs/proto-docs.md index abd741cd0e..181d64c91c 100644 --- a/docs/proto-docs.md +++ b/docs/proto-docs.md @@ -2192,9 +2192,9 @@ MsgMarketManageReqAttrsRequest is a request message for the MarketManageReqAttrs | `admin` | [string](#string) | | admin is the account with "attributes" permission requesting this change. | | `market_id` | [uint32](#uint32) | | market_id is the numerical identifier of the market to update required attributes for. | | `create_ask_to_add` | [string](#string) | repeated | create_ask_to_add are the attributes that should now also be required to create an ask order. | -| `create_ask_to_remove` | [string](#string) | repeated | create_ask_to_add are the attributes that should no longer be required to create an ask order. | -| `create_bid_to_add` | [string](#string) | repeated | create_ask_to_add are the attributes that should now also be required to create a bid order. | -| `create_bid_to_remove` | [string](#string) | repeated | create_ask_to_add are the attributes that should no longer be required to create a bid order. | +| `create_ask_to_remove` | [string](#string) | repeated | create_ask_to_remove are the attributes that should no longer be required to create an ask order. | +| `create_bid_to_add` | [string](#string) | repeated | create_bid_to_add are the attributes that should now also be required to create a bid order. | +| `create_bid_to_remove` | [string](#string) | repeated | create_bid_to_remove are the attributes that should no longer be required to create a bid order. | diff --git a/proto/provenance/exchange/v1/tx.proto b/proto/provenance/exchange/v1/tx.proto index e78689fdf6..8ff9ccc55a 100644 --- a/proto/provenance/exchange/v1/tx.proto +++ b/proto/provenance/exchange/v1/tx.proto @@ -282,11 +282,11 @@ message MsgMarketManageReqAttrsRequest { // create_ask_to_add are the attributes that should now also be required to create an ask order. repeated string create_ask_to_add = 3; - // create_ask_to_add are the attributes that should no longer be required to create an ask order. + // create_ask_to_remove are the attributes that should no longer be required to create an ask order. repeated string create_ask_to_remove = 4; - // create_ask_to_add are the attributes that should now also be required to create a bid order. + // create_bid_to_add are the attributes that should now also be required to create a bid order. repeated string create_bid_to_add = 5; - // create_ask_to_add are the attributes that should no longer be required to create a bid order. + // create_bid_to_remove are the attributes that should no longer be required to create a bid order. repeated string create_bid_to_remove = 6; } diff --git a/x/exchange/tx.pb.go b/x/exchange/tx.pb.go index a06b3317aa..7d02d6f000 100644 --- a/x/exchange/tx.pb.go +++ b/x/exchange/tx.pb.go @@ -1254,11 +1254,11 @@ type MsgMarketManageReqAttrsRequest struct { MarketId uint32 `protobuf:"varint,2,opt,name=market_id,json=marketId,proto3" json:"market_id,omitempty"` // create_ask_to_add are the attributes that should now also be required to create an ask order. CreateAskToAdd []string `protobuf:"bytes,3,rep,name=create_ask_to_add,json=createAskToAdd,proto3" json:"create_ask_to_add,omitempty"` - // create_ask_to_add are the attributes that should no longer be required to create an ask order. + // create_ask_to_remove are the attributes that should no longer be required to create an ask order. CreateAskToRemove []string `protobuf:"bytes,4,rep,name=create_ask_to_remove,json=createAskToRemove,proto3" json:"create_ask_to_remove,omitempty"` - // create_ask_to_add are the attributes that should now also be required to create a bid order. + // create_bid_to_add are the attributes that should now also be required to create a bid order. CreateBidToAdd []string `protobuf:"bytes,5,rep,name=create_bid_to_add,json=createBidToAdd,proto3" json:"create_bid_to_add,omitempty"` - // create_ask_to_add are the attributes that should no longer be required to create a bid order. + // create_bid_to_remove are the attributes that should no longer be required to create a bid order. CreateBidToRemove []string `protobuf:"bytes,6,rep,name=create_bid_to_remove,json=createBidToRemove,proto3" json:"create_bid_to_remove,omitempty"` }