diff options
author | Paweł Bylica <chfast@gmail.com> | 2015-06-24 23:28:56 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2015-06-24 23:28:56 +0800 |
commit | 79e7325e3fcf4eccd40a44a3615259ff80873f3c (patch) | |
tree | 34a9e41503d9bbb9e93c9ae2a763cf19afa9799c /TestUtils.h | |
parent | 3d3734d95bf0cd819e8945ce850ce6a2d477dd63 (diff) | |
parent | f15b7905d2b2366d0882e5aa0c7c61eaee39b095 (diff) | |
download | dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.tar dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.tar.gz dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.tar.bz2 dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.tar.lz dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.tar.xz dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.tar.zst dexon-solidity-79e7325e3fcf4eccd40a44a3615259ff80873f3c.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit-develop
Conflicts:
evmjit/CMakeLists.txt
evmjit/libevmjit/Arith256.cpp
Diffstat (limited to 'TestUtils.h')
-rw-r--r-- | TestUtils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/TestUtils.h b/TestUtils.h index f9817c21..94558635 100644 --- a/TestUtils.h +++ b/TestUtils.h @@ -24,6 +24,7 @@ #include <functional> #include <string> #include <json/json.h> +#include <libdevcore/TransientDirectory.h> #include <libethereum/BlockChain.h> #include <libethereum/ClientBase.h> @@ -78,5 +79,13 @@ struct JsonRpcFixture: public ClientBaseFixture }; +struct MoveNonceToTempDir +{ + MoveNonceToTempDir(); + ~MoveNonceToTempDir(); +private: + TransientDirectory m_dir; +}; + } } |