Skip to content

Commit

Permalink
fix: v0.2.2 hf.2 hardfork (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 authored Jul 12, 2023
1 parent e4146e0 commit efa580f
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 127 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
13 changes: 6 additions & 7 deletions x/permission/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@ var (
ACTION_TYPE_ALL: true,
}
ObjectAllowedActions = map[ActionType]bool{
ACTION_UPDATE_OBJECT_INFO: true,
ACTION_CREATE_OBJECT: true,
ACTION_DELETE_OBJECT: true,
ACTION_GET_OBJECT: true,
ACTION_COPY_OBJECT: true,
ACTION_EXECUTE_OBJECT: true,
ACTION_LIST_OBJECT: true,
ACTION_CREATE_OBJECT: true,
ACTION_DELETE_OBJECT: true,
ACTION_GET_OBJECT: true,
ACTION_COPY_OBJECT: true,
ACTION_EXECUTE_OBJECT: true,
ACTION_LIST_OBJECT: true,

ACTION_TYPE_ALL: true,
}
Expand Down
Loading

0 comments on commit efa580f

Please sign in to comment.