mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 01:37:53 +00:00
commit
3d50e834ba
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ struct TxProof {
|
|||
};
|
||||
|
||||
struct TxKeyResult {
|
||||
bool succes = false;
|
||||
bool success = false;
|
||||
bool good = false;
|
||||
QString amount;
|
||||
bool inPool;
|
||||
|
|
Loading…
Reference in a new issue