Skip to content

Commit

Permalink
fix: exclude project_metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed Oct 17, 2024
1 parent 4a11093 commit 3798b74
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion boa_zksync/compiler_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ def get_compiler_output(output):
# from the compiler. Assuming key names could change and also assuming that the
# number of keys could change, this method breaks if any of that happens:

excluded_keys = {"version", "zk_version", "__VYPER_MINIMAL_PROXY_CONTRACT"}
excluded_keys = {
"version",
"zk_version",
"__VYPER_MINIMAL_PROXY_CONTRACT",
"project_metadata",
}
contract_keys = set(output.keys()) - excluded_keys

if len(contract_keys) != 1:
Expand Down

0 comments on commit 3798b74

Please sign in to comment.