Skip to content

Commit

Permalink
add missing field to event (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgao001 committed Jun 25, 2023
1 parent 2d05f86 commit 1948733
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 121 deletions.
2 changes: 1 addition & 1 deletion proto/greenfield/storage/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ message MsgUpdateGroupExtra {
// group_name defines the name of the group which to be updated
string group_name = 3;
// extra defines extra info for the group to update
string Extra = 4;
string extra = 4;
}

message MsgUpdateGroupExtraResponse {}
Expand Down
1 change: 1 addition & 0 deletions x/storage/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,7 @@ func (k Keeper) CreateGroup(
GroupId: groupInfo.Id,
SourceType: groupInfo.SourceType,
Members: opts.Members,
Extra: opts.Extra,
}); err != nil {
return sdkmath.ZeroUint(), err
}
Expand Down
Loading

0 comments on commit 1948733

Please sign in to comment.