#37 Handle long invalid addresses

This commit is contained in:
adityapk00
2018-11-10 08:09:07 -08:00
parent bf1dff575e
commit 1b3c06f1a5

View File

@@ -584,7 +584,7 @@ QString MainWindow::doSendTxValidations(Tx tx) {
for (auto toAddr : tx.toAddrs) {
if (!matchesAnyAddr(toAddr.addr))
return QString("Recipient Address ") % toAddr.addr % " is Invalid";
return QString("Recipient Address ") % toAddr.addr.left(100) % " is Invalid";
}
return QString();