Fix typos

This commit is contained in:
Dimitris Apostolou 2024-01-27 18:14:40 +02:00
parent f291649ce2
commit 2265902445
No known key found for this signature in database
GPG key ID: 4B5D20E938204A8A
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ void VerifyProofDialog::checkTxKey() {
ui->btn_verify->setEnabled(false); ui->btn_verify->setEnabled(false);
TxKeyResult res = m_wallet->checkTxKey(ui->line_keyTxID->text(), ui->line_keyTxKey->text(), ui->line_keyAddress->text()); 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)); this->proofStatus(false, QString("Error: %1").arg(res.errorString));
return; return;
} }

View file

@ -30,7 +30,7 @@ struct TxProof {
}; };
struct TxKeyResult { struct TxKeyResult {
bool succes = false; bool success = false;
bool good = false; bool good = false;
QString amount; QString amount;
bool inPool; bool inPool;