Skip to content

Commit 3c83210

Browse files
authored
Merge pull request #599 from crytic/dev
Prepare for upgrade to v0.3.10
2 parents ceaca9e + bd7a221 commit 3c83210

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
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)),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
description="Util to facilitate smart contracts compilation.",
1212
url="https://github.com/crytic/crytic-compile",
1313
author="Trail of Bits",
14-
version="0.3.9",
14+
version="0.3.10",
1515
packages=find_packages(),
1616
# Python 3.12.0 on Windows suffers from https://github.com/python/cpython/issues/109590
1717
# breaking some of our integrations. The issue is fixed in 3.12.1

0 commit comments

Comments
 (0)