Browse Source

#37 Handle long invalid addresses

import_zecw
adityapk00 6 years ago
parent
commit
1b3c06f1a5
  1. 2
      src/sendtab.cpp

2
src/sendtab.cpp

@ -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();

Loading…
Cancel
Save