chore: fix lint errors #100

Closed
aleem1314 wants to merge 4 commits from aleem/fix-lint-errors into main
Showing only changes of commit 8a575110bf - Show all commits

View File

@ -341,7 +341,7 @@ func (k Keeper) CreateAuction(ctx sdk.Context, msg types.MsgCreateAuction) (*typ
func (k Keeper) CommitBid(ctx sdk.Context, msg types.MsgCommitBid) (*types.Bid, error) {
if !k.HasAuction(ctx, msg.AuctionId) {
return nil, errors.Wrap(sdkerrors.ErrInvalidRequest, "Auction not found.")
return nil, errors.Wrap(sdkerrors.ErrInvalidRequest, "auction not found")
}
auction := k.GetAuction(ctx, msg.AuctionId)