tidy up error msg

master
michael 2022-08-30 21:53:47 +00:00
parent 11e2c9e819
commit b5c7075bd0
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func (k Keeper) AuctionBids(goCtx context.Context, req *types.QueryAuctionBidsRe
bids, err := memdb.BidDB.GetBids(auction.Index)
if err != nil {
return nil, fmt.Errorf("failed to get bids for auction %s:", err)
return nil, fmt.Errorf("failed to get bids for auction %s: %s", auction.Index, err)
}
return &types.QueryAuctionBidsResponse{Bids: bids}, nil