Skip to content

Commit

Permalink
fix: fix returned operation type in group cross chain app (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
yutianwu authored Jul 28, 2023
1 parent af7c346 commit f88ac87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/storage/keeper/cross_app_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (app *GroupApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossCha
operationType = types.OperationDeleteGroup
result = app.handleDeleteGroupFailAckPackage(ctx, appCtx, p)
case *types.UpdateGroupMemberSynPackage:
operationType = types.OperationDeleteGroup
operationType = types.OperationUpdateGroupMember
result = app.handleUpdateGroupMemberFailAckPackage(ctx, appCtx, p)
default:
panic("unknown cross chain ack package type")
Expand Down

0 comments on commit f88ac87

Please sign in to comment.