Skip to content

Commit

Permalink
Run make-proto-all
Browse files Browse the repository at this point in the history
Signed-off-by: riccardo.montagnin <riccardo.montagnin@gmail.com>
  • Loading branch information
RiccardoM committed May 6, 2021
1 parent 0e8ce06 commit 2723b23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion proto/desmos/profiles/v1beta1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ option go_package = "github.com/desmos-labs/desmos/x/profiles/types";

// GenesisState defines the profiles module's genesis state.
message GenesisState {
repeated desmos.profiles.v1beta1.DTagTransferRequest dtag_transfer_requests = 1 [
repeated desmos.profiles.v1beta1.DTagTransferRequest dtag_transfer_requests =
1 [
(gogoproto.nullable) = false,
(gogoproto.moretags) = "yaml:\"dtag_transfer_requests\"",
(gogoproto.customname) = "DTagTransferRequest"
Expand Down
6 changes: 2 additions & 4 deletions proto/desmos/profiles/v1beta1/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ message Relationship {

// Relationships wraps a list of Relationship objects
message Relationships {
repeated Relationship relationships = 1
[(gogoproto.nullable) = false];
repeated Relationship relationships = 1 [(gogoproto.nullable) = false];
}

// UserBlock represents the fact that the Blocker has blocked the given Blocked
Expand All @@ -103,6 +102,5 @@ message UserBlock {

// UserBlocks wraps a list of UserBlock objects
message UserBlocks {
repeated UserBlock blocks = 1
[(gogoproto.nullable) = false];
repeated UserBlock blocks = 1 [(gogoproto.nullable) = false];
}

0 comments on commit 2723b23

Please sign in to comment.