Merge pull request #156 from rex4539/typos

Fix typos
This commit is contained in:
tobtoht 2024-02-02 16:44:40 +00:00 committed by GitHub
commit 3d50e834ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;