Skip to content

Commit

Permalink
Use int argument (Consensys#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
norhh authored May 10, 2022
1 parent 4adafd2 commit 6b34feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythril/laser/ethereum/cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_cfg_dict(self) -> Dict:

code += str(instruction["address"]) + " " + instruction["opcode"]
if instruction["opcode"].startswith("PUSH"):
code += " " + "".join(instruction["argument"])
code += " " + "".join(str(instruction["argument"]))

code += "\\n"

Expand Down

0 comments on commit 6b34feb

Please sign in to comment.