diff options
| author | Russell Yanofsky <[email protected]> | 2017-12-05 15:57:12 -0500 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2020-03-19 15:26:04 -0500 |
| commit | 1c2ab1a6d29f2c6c065dae4f4a4e2ad1286311b3 (patch) | |
| tree | 5bb8f9e4a1d0a97323b50ff91b01f6e061eab257 /src/qt/rpcconsole.cpp | |
| parent | refactor: Get rid of Wallet::IsWalletFlagSet method (diff) | |
| download | discoin-1c2ab1a6d29f2c6c065dae4f4a4e2ad1286311b3.tar.xz discoin-1c2ab1a6d29f2c6c065dae4f4a4e2ad1286311b3.zip | |
refactor: Rename Node::disconnect methods
Avoid overloading method name to work more easily with IPC framework
Diffstat (limited to 'src/qt/rpcconsole.cpp')
| -rw-r--r-- | src/qt/rpcconsole.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index b82ab9ffe..0ff0bb323 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -1191,7 +1191,7 @@ void RPCConsole::disconnectSelectedNode() // Get currently selected peer address NodeId id = nodes.at(i).data().toLongLong(); // Find the node, disconnect it and clear the selected node - if(m_node.disconnect(id)) + if(m_node.disconnectById(id)) clearSelectedNode(); } } @@ -1216,7 +1216,7 @@ void RPCConsole::banSelectedNode(int bantime) const CNodeCombinedStats *stats = clientModel->getPeerTableModel()->getNodeStats(detailNodeRow); if (stats) { m_node.ban(stats->nodeStats.addr, BanReasonManuallyAdded, bantime); - m_node.disconnect(stats->nodeStats.addr); + m_node.disconnectByAddress(stats->nodeStats.addr); } } clearSelectedNode(); |