diff options
author | Gav Wood <g@ethdev.com> | 2014-11-14 19:07:33 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2014-11-14 19:07:33 +0800 |
commit | a0a8c61a7e1b27907671a3a95fef1217a82f5fb7 (patch) | |
tree | 0f051b32fc00d9c3002d1652683975077b661121 | |
parent | d064028e16a89678616d48d83d4748cba110bda6 (diff) | |
parent | 1b405a6957e8860f4d4db78df5d92dbb69c301dc (diff) | |
download | dexon-solidity-a0a8c61a7e1b27907671a3a95fef1217a82f5fb7.tar.gz dexon-solidity-a0a8c61a7e1b27907671a3a95fef1217a82f5fb7.tar.zst dexon-solidity-a0a8c61a7e1b27907671a3a95fef1217a82f5fb7.zip |
Merge pull request #509 from chriseth/sol_jsonInterface
Provide interface for calls in JSON and some other formatting changes.
-rw-r--r-- | solidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidityEndToEndTest.cpp b/solidityEndToEndTest.cpp index 352ee214..1d09c114 100644 --- a/solidityEndToEndTest.cpp +++ b/solidityEndToEndTest.cpp @@ -44,7 +44,7 @@ public: bytes const& compileAndRun(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; |