diff --git a/routes/nft.go b/routes/nft.go index ed8da3b2..0bd4f39a 100644 --- a/routes/nft.go +++ b/routes/nft.go @@ -2162,6 +2162,9 @@ func (fes *APIServer) GetAcceptedBidHistory(ww http.ResponseWriter, req *http.Re } var acceptedBidEntryResponses []*NFTBidEntryResponse for _, acceptedBidEntry := range *acceptedBidEntries { + if acceptedBidEntry == nil { + continue + } acceptedBidEntryResponses = append(acceptedBidEntryResponses, fes._bidEntryToResponse( acceptedBidEntry, nil, utxoView, false, false))