diff --git a/src/dialog/VerifyProofDialog.cpp b/src/dialog/VerifyProofDialog.cpp index 61b68b0..0bfcee8 100644 --- a/src/dialog/VerifyProofDialog.cpp +++ b/src/dialog/VerifyProofDialog.cpp @@ -103,7 +103,7 @@ void VerifyProofDialog::checkTxKey() { ui->btn_verify->setEnabled(false); TxKeyResult res = m_wallet->checkTxKey(ui->line_keyTxID->text(), ui->line_keyTxKey->text(), ui->line_keyAddress->text()); - if (!res.succes) { + if (!res.success) { this->proofStatus(false, QString("Error: %1").arg(res.errorString)); return; } diff --git a/src/libwalletqt/Wallet.h b/src/libwalletqt/Wallet.h index df74afb..efe82a2 100644 --- a/src/libwalletqt/Wallet.h +++ b/src/libwalletqt/Wallet.h @@ -30,7 +30,7 @@ struct TxProof { }; struct TxKeyResult { - bool succes = false; + bool success = false; bool good = false; QString amount; bool inPool;