diff options
author | subtly <subtly@users.noreply.github.com> | 2015-06-20 09:08:06 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2015-06-20 09:08:06 +0800 |
commit | b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f (patch) | |
tree | abfaa5147d476810fca0b5d5adedf86fe6dce99e /TestUtils.h | |
parent | ae2213effc1e8b073cb4dc730735ba01d5651b8b (diff) | |
parent | 2a870afc7b73de8df8fccf1f304c4be2e69bb7cb (diff) | |
download | dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.tar dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.tar.gz dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.tar.bz2 dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.tar.lz dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.tar.xz dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.tar.zst dexon-solidity-b2ddbaec027f14cb804f85ca0dfa2fcdfbbb686f.zip |
Merge branch 'develop' into rlpx
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; +}; + } } |