Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersuweijie committed Mar 25, 2024
1 parent b6617f3 commit 084e2d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/alliance/bindings/query_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func CustomQuerier(q *QueryPlugin) func(ctx sdk.Context, request json.RawMessage
var AllianceRequest types.AllianceQuery
err = json.Unmarshal(request, &AllianceRequest)
if err != nil {
return
return nil, err
}
if AllianceRequest.Alliance != nil {
return q.GetAlliance(ctx, AllianceRequest.Alliance.Denom)
Expand Down

0 comments on commit 084e2d7

Please sign in to comment.