Additional debug stuff in cmake.
@ -123,6 +123,7 @@ if (NOT HEADLESS)
message(" - npm location : ${ETH_NPM}")
find_program(ETH_JSON_RPC_STUB jsonrpcstub)
message(" - jsonrpcstub location : ${ETH_JSON_RPC_STUB}")
endif() #HEADLESS
@ -64,6 +64,9 @@ void connectClients(Client& c1, Client& c2)
namespace test
{
struct ValueTooLarge: virtual Exception {};
bigint const c_max256plus1 = bigint(1) << 256;
ImportTest::ImportTest(json_spirit::mObject& _o, bool isFiller): m_TestObject(_o)
importEnv(_o["env"].get_obj());
@ -42,9 +42,6 @@ void connectClients(Client& c1, Client& c2);
class ImportTest
public: