Skip to content

Commit

Permalink
fix: dict format when compiling vyper abi
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Sep 11, 2020
1 parent 508d6eb commit 199c12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie/project/compiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def get_abi(
continue
name = Path(path).stem
final_output[name] = {
"abi": output_json["contracts"][path][name],
"abi": output_json["contracts"][path][name]["abi"],
"contractName": name,
"type": "interface",
"sha1": sha1(contract_sources[path].encode()).hexdigest(),
Expand Down

0 comments on commit 199c12d

Please sign in to comment.