chore: fix error message
This commit is contained in:
parent
c72302d078
commit
8a575110bf
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user