From 6b34febd5ec53bd61c2115013bda1e21164ee96d Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Tue, 10 May 2022 10:09:47 +0100 Subject: [PATCH] Use int argument (#1625) --- mythril/laser/ethereum/cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/laser/ethereum/cfg.py b/mythril/laser/ethereum/cfg.py index cae9c525..af9a2152 100644 --- a/mythril/laser/ethereum/cfg.py +++ b/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"