mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-18 02:07:41 +00:00
TxImportDialog: fix segfault
This commit is contained in:
parent
fadb2d7a50
commit
0f64f78bb8
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ TxImportDialog::TxImportDialog(QWidget *parent, QSharedPointer<AppContext> ctx)
|
||||||
ui->resp->hide();
|
ui->resp->hide();
|
||||||
ui->label_loading->hide();
|
ui->label_loading->hide();
|
||||||
|
|
||||||
auto node = ctx->nodes->connection();
|
auto node = m_ctx->nodes->connection();
|
||||||
m_rpc = new DaemonRpc(this, getNetworkTor(), node.toAddress());
|
m_rpc = new DaemonRpc(this, getNetworkTor(), node.toAddress());
|
||||||
|
|
||||||
connect(ui->btn_load, &QPushButton::clicked, this, &TxImportDialog::loadTx);
|
connect(ui->btn_load, &QPushButton::clicked, this, &TxImportDialog::loadTx);
|
||||||
|
|
Loading…
Reference in a new issue