diff options
author | winsvega <winsvega@mail.ru> | 2015-02-11 19:12:18 +0800 |
---|---|---|
committer | winsvega <winsvega@mail.ru> | 2015-02-11 19:12:18 +0800 |
commit | a44feb813ed0ab0df5dd83c010c3c3d7111e4630 (patch) | |
tree | 5a68fa42cda17385372f4484ef3f2e6d81e9b24c /TestHelper.cpp | |
parent | 30db15c1a9933972f0ad0236e50bc967ebf24dd3 (diff) | |
parent | 9a792edb33a95f8034cbb368e94e8ca0f4565415 (diff) | |
download | dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.tar dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.tar.gz dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.tar.bz2 dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.tar.lz dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.tar.xz dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.tar.zst dexon-solidity-a44feb813ed0ab0df5dd83c010c3c3d7111e4630.zip |
Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into develop
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 8e4c493e..8a00a546 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -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()); |