Simplify and remove white space on recipient (Pay to)

This commit is contained in:
mrdeveloper 2020-10-30 22:13:56 +01:00
parent df2ff26c0f
commit 0dd81c4873
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ void SendWidget::fillAddress(const QString &address) {
void SendWidget::sendClicked() {
double amount = 0.0;
QString currency = ui->comboCurrencySelection->currentText();
QString recipient = ui->lineAddress->text(); // @TODO: regex
QString recipient = ui->lineAddress->text().simplified().remove(' ');
QString description = ui->lineDescription->text();
if(recipient.isEmpty()) {
QMessageBox::warning(this, "Malformed recipient", "The recipient address was not correct");