Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersuweijie committed Mar 27, 2024
1 parent d76cd01 commit cef3a84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/alliance/bindings/query_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (q *QueryPlugin) GetAlliance(ctx sdk.Context, denom string) (res []byte, er
},
IsInitialized: asset.IsInitialized,
})
return
return res, err
}

func (q *QueryPlugin) GetDelegation(ctx sdk.Context, denom string, delegator string, validator string) (res []byte, err error) {
Expand Down
2 changes: 1 addition & 1 deletion x/alliance/bindings/tests/query_plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func TestDelegationRewardsQuery(t *testing.T) {
Rewards: []sdk.Coin{
{
Denom: "stake",
Amount: sdk.NewInt(2000000),
Amount: math.NewInt(2000000),
},
},
}, response)
Expand Down

0 comments on commit cef3a84

Please sign in to comment.