Remove leftovers of compact-format and interface from --combined-json

This commit is contained in:
Kamil Śliwak
2021-10-01 13:05:30 +02:00
parent 6d806359be
commit 7915f32852
6 changed files with 7 additions and 11 deletions
@@ -1 +1 @@
--evm-version=homestead --import-ast --combined-json ast,compact-format --pretty-json
--evm-version=homestead --import-ast --combined-json ast --pretty-json
+1 -1
View File
@@ -18,7 +18,7 @@ cd "$FILETMP" || exit 1
function testFile()
{
set +e
ALLOUTPUT=$($SOLC --combined-json ast,compact-format --pretty-json "$@" --stop-after parsing 2>&1)
ALLOUTPUT=$($SOLC --combined-json ast --pretty-json "$@" --stop-after parsing 2>&1)
local RESULT=$?
set -e
if test ${RESULT} -ne 0; then