tidy up error msg
parent
11e2c9e819
commit
b5c7075bd0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue