Use int argument (#1625)

pull/1628/head
Nikhil Parasaram 3 years ago committed by GitHub
parent 4adafd27ac
commit 6b34febd5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      mythril/laser/ethereum/cfg.py

@ -66,7 +66,7 @@ class Node:
code += str(instruction["address"]) + " " + instruction["opcode"]
if instruction["opcode"].startswith("PUSH"):
code += " " + "".join(instruction["argument"])
code += " " + "".join(str(instruction["argument"]))
code += "\\n"

Loading…
Cancel
Save