Remove exception assignment

pull/946/head
Nikhil Parasaram 6 years ago
parent 92a9990c34
commit 1da86af5d8
  1. 2
      mythril/laser/ethereum/instructions.py

@ -1325,7 +1325,7 @@ class Instruction:
index = util.get_concrete_int(index)
return self._sload_helper(global_state, index)
except TypeError as e:
except TypeError:
if not keccak_function_manager.is_keccak(index):
return self._sload_helper(global_state, str(index))

Loading…
Cancel
Save