From 5069aebda704854d5f09c6265c0f32e11d737be8 Mon Sep 17 00:00:00 2001 From: Federico Kunze Date: Fri, 15 May 2020 12:49:54 -0400 Subject: [PATCH] minor fix --- x/auction/types/auctions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auction/types/auctions.go b/x/auction/types/auctions.go index ffdbcac4..7af97e6d 100644 --- a/x/auction/types/auctions.go +++ b/x/auction/types/auctions.go @@ -187,7 +187,7 @@ func NewDebtAuction(buyerModAccName string, bid sdk.Coin, initialLot sdk.Coin, e Lot: initialLot, Bidder: supply.NewModuleAddress(buyerModAccName), // send proceeds from the first bid to the buyer. Bid: bid, // amount that the buyer is buying - doesn't change over course of auction - HasReceivedBids: true, + HasReceivedBids: false, // new auctions don't have any bids EndTime: endTime, MaxEndTime: endTime, },