mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 09:47:36 +00:00
History: grab tx key for tx proof dialog
This commit is contained in:
parent
c15426fee4
commit
f2b2bb9b7c
1 changed files with 3 additions and 3 deletions
|
@ -144,9 +144,9 @@ void HistoryWidget::createTxProof() {
|
|||
auto *tx = ui->history->currentEntry();
|
||||
if (!tx) return;
|
||||
|
||||
auto *dialog = new TxProofDialog(this, m_ctx, tx);
|
||||
dialog->exec();
|
||||
dialog->deleteLater();
|
||||
TxProofDialog dialog{this, m_ctx, tx};
|
||||
dialog.getTxKey();
|
||||
dialog.exec();
|
||||
}
|
||||
|
||||
void HistoryWidget::copy(copyField field) {
|
||||
|
|
Loading…
Reference in a new issue