aboutsummaryrefslogtreecommitdiff
path: root/node/nextnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/nextnode.cpp')
-rw-r--r--node/nextnode.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/node/nextnode.cpp b/node/nextnode.cpp
index f6c4454..8c5b7eb 100644
--- a/node/nextnode.cpp
+++ b/node/nextnode.cpp
@@ -8,11 +8,6 @@ NextNode::NextNode(tcp::socket&& socket)
: client(std::move(socket))
{}
-void NextNode::send(std::string message)
-{
- client.send(message);
-}
-
void NextNode::async_connect(std::string next_host, std::string next_port, std::function<void ()> on_connect)
{
client.async_connect(next_host, next_port, on_connect);