mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 15:09:59 +01:00
sendcoinsdialog: display real failed address string
- display the real string (faulty address), which causes the valid address check to fail, instead of a stringified "nonsense" CBitcoinAddress
This commit is contained in:
@@ -365,9 +365,8 @@ bool SendCoinsDialog::handlePaymentRequest(const SendCoinsRecipient &rv)
|
||||
else {
|
||||
CBitcoinAddress address(rv.address.toStdString());
|
||||
if (!address.IsValid()) {
|
||||
QString strAddress(address.ToString().c_str());
|
||||
QMessageBox::warning(this, strSendCoins,
|
||||
tr("Invalid payment address %1").arg(strAddress));
|
||||
tr("Invalid payment address %1").arg(rv.address));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user