Merge pull request #12069 from ethereum/remove-combined-json-compact-format-leftovers

Remove leftovers of `compact-format` and `interface` from `--combined-json`
This commit is contained in:
Kamil Śliwak
2021-10-01 14:40:17 +02:00
committed by GitHub
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