Skip to content

Commit

Permalink
Fix bug in temporary test code. This solution fixes the issue brought…
Browse files Browse the repository at this point in the history
… up.
  • Loading branch information
Taztingo committed Jan 25, 2024
1 parent e730846 commit 81acad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ func New(
msg := &group.QueryGroupPolicyInfoRequest{Address: account.String()}
goCtx := sdk.WrapSDKContext(ctx)
_, err := app.GroupKeeper.GroupPolicyInfo(goCtx, msg)
return err != nil
return err == nil
}))

app.HoldKeeper = holdkeeper.NewKeeper(
Expand Down

0 comments on commit 81acad5

Please sign in to comment.