diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-11-04 18:15:16 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-11-04 18:15:16 +0800 |
commit | de3e2acdca561d18524732e64c397b5c87538e9a (patch) | |
tree | b83678c9283bde7302065f530d265e4312f7d27a | |
parent | cde59bdb90b9899871fbbe473d8bee8d7be2465d (diff) | |
download | dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.tar dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.tar.gz dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.tar.bz2 dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.tar.lz dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.tar.xz dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.tar.zst dexon-solidity-de3e2acdca561d18524732e64c397b5c87538e9a.zip |
little cleanup after upgrading jsonrpc
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | jsonrpc.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 63094fa2..52a73f84 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ target_link_libraries(testeth gmp) target_link_libraries(testeth solidity) target_link_libraries(testeth ${CRYPTOPP_LS}) target_link_libraries(testeth webthree) -if(JSONRPC_LS) +if(JSONRPC_SERVER_LS) target_link_libraries(testeth web3jsonrpc) target_link_libraries(testeth ${JSONRPC_CLIENT_LS}) endif() diff --git a/jsonrpc.cpp b/jsonrpc.cpp index f261a516..1eee2135 100644 --- a/jsonrpc.cpp +++ b/jsonrpc.cpp @@ -31,8 +31,6 @@ #include <libweb3jsonrpc/CorsHttpServer.h> #include <jsonrpccpp/server/connectors/httpserver.h> #include <jsonrpccpp/client/connectors/httpclient.h> -//#include <jsonrpc/connectors/httpserver.h> -//#include <jsonrpc/connectors/httpclient.h> #include <set> #include "JsonSpiritHeaders.h" #include "TestHelper.h" |