96@@ -97,9 +97,18 @@ void SendCoinsDialog::on_sendButton_clicked()
97 QString amount = BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), rcp.amount);
98 if (rcp.authenticatedMerchant.isEmpty())
99 {
100- QString address = rcp.address;
101- QString to = GUIUtil::HtmlEscape(rcp.label);
102- formatted.append(tr("<b>%1</b> to %2 (%3)").arg(amount, to, address));
103+ QString recipientElement = QString("<b>%1</b> ").arg(BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, rcp.amount));
This should be changed to dynamic units via model->getOptionsModel()->getDisplayUnit()
, remember my recent pull :).
Yes. We should use that.
@laanwj should i takeover again and fix these things?
@jonasschnelli I’d rather just get this merged ASAP and leave improvements to later. So if there’s nothing breaking or obviously incorrect I’d like to get ACKs.