Tweak log statement

This commit is contained in:
ghubstan 2022-07-01 15:45:14 -03:00
parent 661ef2fa41
commit 3c08b0bf46
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -334,7 +334,7 @@ public class TakeBestPricedOfferToBuyBsq extends AbstractBot {
iHavePreferredTradingPeers.get()
? isMakerPreferredTradingPeer.test(offer) ? "YES" : "NO"
: "N/A");
var fixedPriceLabel = format("Is offer fixed-price (%s) >= bot's minimum price (%s)?",
var fixedPriceLabel = format("Is offer fixed-price (%s) >= bot's minimum price of (%s)?",
offer.getPrice() + " BTC",
targetPrice + " BTC");
filterResultsByLabel.put(fixedPriceLabel, isFixedPriceGEMaxMarketPriceMargin.test(offer, avgBsqPrice));