diff options
author | Christian <c@ethdev.com> | 2014-11-12 00:41:48 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-11-12 00:41:48 +0800 |
commit | 1b405a6957e8860f4d4db78df5d92dbb69c301dc (patch) | |
tree | 9a89e01c79db897906baa18fd16d123e7febd77a /solidityEndToEndTest.cpp | |
parent | e4f4eaf7c86481f4ee5f30f24cd1a26c239a4915 (diff) | |
download | dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.tar dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.tar.gz dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.tar.bz2 dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.tar.lz dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.tar.xz dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.tar.zst dexon-solidity-1b405a6957e8860f4d4db78df5d92dbb69c301dc.zip |
Provide interface for calls in JSON and some other formatting changes.
Diffstat (limited to 'solidityEndToEndTest.cpp')
-rw-r--r-- | solidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidityEndToEndTest.cpp b/solidityEndToEndTest.cpp index 796adcb1..ffeab0a7 100644 --- a/solidityEndToEndTest.cpp +++ b/solidityEndToEndTest.cpp @@ -43,7 +43,7 @@ public: bytes const& compileAndRun(std::string const& _sourceCode) { - bytes code = dev::solidity::CompilerStack::compile(_sourceCode); + bytes code = dev::solidity::CompilerStack::staticCompile(_sourceCode); sendMessage(code, true); BOOST_REQUIRE(!m_output.empty()); return m_output; |