diff options
author | subtly <subtly> | 2015-08-10 17:18:32 +0800 |
---|---|---|
committer | subtly <subtly> | 2015-08-10 17:18:32 +0800 |
commit | 15fca6ea5063f5ea307019f2322d7a444ea71dff (patch) | |
tree | c219dd3205bd0abcf872115e8b5ef794855d3555 | |
parent | 99f829f907010d848dfa29fd668e474cbefadbce (diff) | |
download | dexon-solidity-15fca6ea5063f5ea307019f2322d7a444ea71dff.tar.gz dexon-solidity-15fca6ea5063f5ea307019f2322d7a444ea71dff.tar.zst dexon-solidity-15fca6ea5063f5ea307019f2322d7a444ea71dff.zip |
remove MoveNonceToTempDir
-rw-r--r-- | TestUtils.cpp | 5 | ||||
-rw-r--r-- | TestUtils.h | 8 |
2 files changed, 0 insertions, 13 deletions
diff --git a/TestUtils.cpp b/TestUtils.cpp index 0ec76386..5e0619c0 100644 --- a/TestUtils.cpp +++ b/TestUtils.cpp @@ -120,8 +120,3 @@ void ParallelClientBaseFixture::enumerateClients(std::function<void(Json::Value }); } -MoveNonceToTempDir::MoveNonceToTempDir() -{ - crypto::Nonce::seedFilePath(m_dir.path() + "/seed"); -} - diff --git a/TestUtils.h b/TestUtils.h index f0c8e50f..a7a0eacf 100644 --- a/TestUtils.h +++ b/TestUtils.h @@ -79,13 +79,5 @@ struct JsonRpcFixture: public ClientBaseFixture }; -struct MoveNonceToTempDir -{ - MoveNonceToTempDir(); - ~MoveNonceToTempDir() {} -private: - TransientDirectory m_dir; -}; - } } |