]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
Fix typos
authorDimitris Apostolou <dimitris.apostolou@icloud.com>
Sat, 27 Jan 2024 16:14:40 +0000 (18:14 +0200)
committerDimitris Apostolou <dimitris.apostolou@icloud.com>
Sat, 27 Jan 2024 16:14:40 +0000 (18:14 +0200)
src/dialog/VerifyProofDialog.cpp
src/libwalletqt/Wallet.h

index 61b68b09e462c8e6864809ea5fbd3a51792931a6..0bfcee8df0675548dd5a4e6eaf9927828db3a695 100644 (file)
@@ -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;
     }
index df74afb2adc2e2b3ef2e7235f7864eff6e22a812..efe82a27a161de4ec73ee5ce6fcab1a8097e20b1 100644 (file)
@@ -30,7 +30,7 @@ struct TxProof {
 };
 
 struct TxKeyResult {
-    bool succes = false;
+    bool success = false;
     bool good = false;
     QString amount;
     bool inPool;