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/interfaces/node.h | |
| 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/interfaces/node.h')
| -rw-r--r-- | src/interfaces/node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/node.h b/src/interfaces/node.h index 38aeb0632..a0466bd29 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -124,10 +124,10 @@ public: virtual bool unban(const CSubNet& ip) = 0; //! Disconnect node by address. - virtual bool disconnect(const CNetAddr& net_addr) = 0; + virtual bool disconnectByAddress(const CNetAddr& net_addr) = 0; //! Disconnect node by id. - virtual bool disconnect(NodeId id) = 0; + virtual bool disconnectById(NodeId id) = 0; //! Get total bytes recv. virtual int64_t getTotalBytesRecv() = 0; |