aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionFramework.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-29 08:01:47 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-08-29 18:09:18 +0800
commit7fb4a64136af18f2b61aef71ecc33ccbbc790ec6 (patch)
treec44271af2ca3c9a4461a297ba608f1a75910f09b /test/ExecutionFramework.cpp
parentb364bd048ffaf233782a23dabd13622431a75aa3 (diff)
downloaddexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.gz
dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.zst
dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.zip
Move all file specific globals to anonymous namespace
Diffstat (limited to 'test/ExecutionFramework.cpp')
-rw-r--r--test/ExecutionFramework.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ExecutionFramework.cpp b/test/ExecutionFramework.cpp
index f4e5fcef..b2de814a 100644
--- a/test/ExecutionFramework.cpp
+++ b/test/ExecutionFramework.cpp
@@ -31,8 +31,8 @@ using namespace dev::test;
namespace // anonymous
{
- h256 const EmptyTrie("0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421");
-}
+
+h256 const EmptyTrie("0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421");
string getIPCSocketPath()
{
@@ -43,6 +43,8 @@ string getIPCSocketPath()
return ipcPath;
}
+}
+
ExecutionFramework::ExecutionFramework() :
m_rpc(RPCSession::instance(getIPCSocketPath())),
m_optimize(dev::test::Options::get().optimize),