diff options
author | chriseth <chris@ethereum.org> | 2018-11-13 23:13:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-13 23:13:14 +0800 |
commit | 8ed2e02407cd9ad483d1645ffb67df83b339af3d (patch) | |
tree | 4d020d7fa482528b98759b755a8a725e6acda295 /test/tools/fuzzer.cpp | |
parent | c21c7e74fee74c6201f14eaa664784aae79a52a2 (diff) | |
parent | 6ed3765941c4418881a6842f58ea1123a9c54738 (diff) | |
download | dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.tar dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.tar.gz dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.tar.bz2 dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.tar.lz dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.tar.xz dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.tar.zst dexon-solidity-8ed2e02407cd9ad483d1645ffb67df83b339af3d.zip |
Merge pull request #5105 from ethereum/libsolc-api
Remove old libsolc API (compileJSON, compileJSONMulti, compileJSONCallback)
Diffstat (limited to 'test/tools/fuzzer.cpp')
-rw-r--r-- | test/tools/fuzzer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools/fuzzer.cpp b/test/tools/fuzzer.cpp index bb020f8c..8633454c 100644 --- a/test/tools/fuzzer.cpp +++ b/test/tools/fuzzer.cpp @@ -89,7 +89,7 @@ void testConstantOptimizer(string const& input) void runCompiler(string input) { - string outputString(compileStandard(input.c_str(), nullptr)); + string outputString(solidity_compile(input.c_str(), nullptr)); Json::Value output; if (!jsonParseStrict(outputString, output)) { |