Skip to content

Commit

Permalink
refactor: project_metadata not used anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed Nov 4, 2024
1 parent 4f88454 commit cbf76a2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions boa_zksync/compiler_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,7 @@ 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",
"project_metadata",
"extra_data",
}
excluded_keys = {"version", "zk_version", "__VYPER_MINIMAL_PROXY_CONTRACT", "extra_data"}
contract_keys = set(output.keys()) - excluded_keys

if len(contract_keys) != 1:
Expand Down

0 comments on commit cbf76a2

Please sign in to comment.