mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 17:57:39 +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();
|
auto *tx = ui->history->currentEntry();
|
||||||
if (!tx) return;
|
if (!tx) return;
|
||||||
|
|
||||||
auto *dialog = new TxProofDialog(this, m_ctx, tx);
|
TxProofDialog dialog{this, m_ctx, tx};
|
||||||
dialog->exec();
|
dialog.getTxKey();
|
||||||
dialog->deleteLater();
|
dialog.exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::copy(copyField field) {
|
void HistoryWidget::copy(copyField field) {
|
||||||
|
|
Loading…
Reference in a new issue