Skip to content

Commit 8747a12

Browse files
authored
Merge pull request #597 from crytic/stop-removing-spaces
Stop removing spaces in ABI
2 parents aeeae0c + eb58b5e commit 8747a12

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

crytic_compile/platform/solc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def _build_contract_data(compilation_unit: "CompilationUnit") -> Dict:
4343
abi = abi.replace("'", '"')
4444
abi = abi.replace("True", "true")
4545
abi = abi.replace("False", "false")
46-
abi = abi.replace(" ", "")
4746
exported_name = combine_filename_name(filename.absolute, contract_name)
4847
contracts[exported_name] = {
4948
"srcmap": ";".join(source_unit.srcmap_init(contract_name)),

0 commit comments

Comments
 (0)