Trezor: can't create SpendProofs: missing spendkey

This commit is contained in:
tobtoht 2021-07-02 19:43:00 +02:00
parent 1e943b6208
commit c7558c2676
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -75,6 +75,11 @@ void TxProofDialog::selectSpendProof() {
return; return;
} }
if (m_ctx->wallet->isHwBacked()) {
this->showWarning("SpendProof creation is not supported on this hardware device.");
return;
}
ui->frame_message->show(); ui->frame_message->show();
ui->label_summary->setText("This proof shows you created a transaction with the txid shown above."); ui->label_summary->setText("This proof shows you created a transaction with the txid shown above.");
} }