aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/CMakeLists.txt1
-rw-r--r--client/cmixclient.hpp4
2 files changed, 3 insertions, 2 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
index 489a136..68a37da 100644
--- a/client/CMakeLists.txt
+++ b/client/CMakeLists.txt
@@ -25,4 +25,5 @@ target_link_libraries(client
PRIVATE cmix-bignum
PRIVATE cmix-network
PRIVATE cmix-protobuf
+ PRIVATE cmix-common
)
diff --git a/client/cmixclient.hpp b/client/cmixclient.hpp
index 056e2b3..71be7c9 100644
--- a/client/cmixclient.hpp
+++ b/client/cmixclient.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "protobufclient.hpp"
+#include "senderreceiver.hpp"
#include "api.h"
#include "logging.hpp"
@@ -21,7 +21,7 @@ class CMixClient {
boost::asio::io_service io_service;
std::vector<NodeDetails> network_details;
- std::vector<ProtobufClient<SendReceive>> network_connections;
+ std::vector<SenderReceiver> network_connections;
Api api;
KeyPair keypair;