Skip to content

Commit

Permalink
Merge pull request #156 from rex4539/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
tobtoht authored Feb 2, 2024
2 parents 96c0b55 + 2265902 commit 3d50e83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dialog/VerifyProofDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/libwalletqt/Wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct TxProof {
};

struct TxKeyResult {
bool succes = false;
bool success = false;
bool good = false;
QString amount;
bool inPool;
Expand Down

0 comments on commit 3d50e83

Please sign in to comment.