aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-06-09 20:57:16 +0800
committerchriseth <c@ethdev.com>2016-06-29 05:18:54 +0800
commitad36fc3c58466f1a03f96dda0a7e74f418f8bed9 (patch)
tree41156f636ae714f8ad7d2dbf4b06f8616db98e01 /test/libsolidity
parenta92398a3006af49606b41f16117e3f9fa0c06999 (diff)
downloaddexon-solidity-ad36fc3c58466f1a03f96dda0a7e74f418f8bed9.tar.gz
dexon-solidity-ad36fc3c58466f1a03f96dda0a7e74f418f8bed9.tar.zst
dexon-solidity-ad36fc3c58466f1a03f96dda0a7e74f418f8bed9.zip
Style
Diffstat (limited to 'test/libsolidity')
-rw-r--r--test/libsolidity/solidityExecutionFramework.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/libsolidity/solidityExecutionFramework.h b/test/libsolidity/solidityExecutionFramework.h
index bce073ec..14d27ffa 100644
--- a/test/libsolidity/solidityExecutionFramework.h
+++ b/test/libsolidity/solidityExecutionFramework.h
@@ -51,8 +51,7 @@ class ExecutionFramework
public:
ExecutionFramework():
m_state(0),
- m_socket("/home/wins/Ethereum/testnet/ethnode1/geth.ipc")
- //m_socket("/media/www/STUFF/Ethereum/testnet/ethnode1/datadir/geth.ipc")
+ m_socket("/tmp/test/geth.ipc")
{
eth::NoProof::init();
m_sealEngine.reset(eth::ChainParams().createSealEngine());
@@ -61,10 +60,10 @@ public:
string account = m_socket.personal_newAccount("qwerty");
m_socket.test_setChainParams(
- "0x1000000000000000000000000000000000000000",
- account,
- "1000000000000000000000000000000000000000000000"
- );
+ "0x1000000000000000000000000000000000000000",
+ account,
+ "1000000000000000000000000000000000000000000000"
+ );
m_socket.personal_unlockAccount(account, "qwerty", 10000);
m_sender = Address(account);
}
@@ -124,7 +123,8 @@ public:
"Computed values do not match.\nSolidity: " +
toHex(solidityResult) +
"\nC++: " +
- toHex(cppResult));
+ toHex(cppResult)
+ );
}
template <class CppFunction, class... Args>