diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-01 19:59:36 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-01 19:59:36 +0800 |
commit | 8b3b711efff286d5ff409843c802c001a66fe3c7 (patch) | |
tree | d5311122adffc2663390b13a15ae251a323c42d7 | |
parent | 4d7a55f8e21cb0067d11165d3bd21b9a82ee48ee (diff) | |
parent | 5e6121d3fe27ca9c93b99e5fa43a0e4a6465860c (diff) | |
download | dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.gz dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.bz2 dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.lz dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.xz dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.zst dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.zip |
Merge remote-tracking branch 'upstream/develop' into develop
-rw-r--r-- | TestHelper.cpp | 2 | ||||
-rw-r--r-- | rlp.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 20c42a9b..03e67934 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -42,6 +42,8 @@ void mine(Client& c, int numBlocks) void connectClients(Client& c1, Client& c2) { + (void)c1; + (void)c2; // TODO: Move to WebThree. eth::Client no longer handles networking. #if 0 short c1Port = 20000; @@ -22,12 +22,12 @@ #include <fstream> #include <sstream> -#include "JsonSpiritHeaders.h" #include <libdevcore/Log.h> #include <libdevcore/RLP.h> #include <libdevcore/Common.h> #include <boost/test/unit_test.hpp> #include <algorithm> +#include "JsonSpiritHeaders.h" using namespace std; using namespace dev; |