mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
Fix typos
This commit is contained in:
parent
f291649ce2
commit
2265902445
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue