From 3979cc27f2c569ced63b9f83516c1fc2ed34765c Mon Sep 17 00:00:00 2001 From: Nathan Date: Tue, 27 Aug 2019 08:29:44 -0400 Subject: [PATCH] Fix typo --- mythril/laser/ethereum/instructions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/laser/ethereum/instructions.py b/mythril/laser/ethereum/instructions.py index d79a7ca5..6cf0d231 100644 --- a/mythril/laser/ethereum/instructions.py +++ b/mythril/laser/ethereum/instructions.py @@ -1051,7 +1051,7 @@ class Instruction: if ( isinstance(global_state.current_transaction, ContractCreationTransaction) and code_offset >= len(global_state.environment.code.bytecode) // 2 - ):ce + ): # Treat creation code after the expected disassembly as calldata. # This is a slightly hacky way to ensure that symbolic constructor # arguments work correctly.