mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-12 09:37:47 +00:00
BroadcastTxDialog: fix segv
This commit is contained in:
parent
0f64f78bb8
commit
b2217c974b
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ BroadcastTxDialog::BroadcastTxDialog(QWidget *parent, QSharedPointer<AppContext>
|
|||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
auto node = ctx->nodes->connection();
|
||||
auto node = m_ctx->nodes->connection();
|
||||
m_rpc = new DaemonRpc(this, getNetworkTor(), node.toAddress());
|
||||
|
||||
connect(ui->btn_Broadcast, &QPushButton::clicked, this, &BroadcastTxDialog::broadcastTx);
|
||||
|
|
Loading…
Reference in a new issue