From 3b796091c257248d671f86aa8abc661613f50834 Mon Sep 17 00:00:00 2001 From: ggrieco-tob <31542053+ggrieco-tob@users.noreply.github.com> Date: Fri, 29 Dec 2017 12:49:50 -0300 Subject: [PATCH] NotImplemented(x) -> NotImplementedError(x) (#677) --- manticore/ethereum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manticore/ethereum.py b/manticore/ethereum.py index 1fbda77..52d6ddf 100644 --- a/manticore/ethereum.py +++ b/manticore/ethereum.py @@ -377,7 +377,7 @@ class ABI(object): size = get_uint(256, dyn_offset) return data[dyn_offset+32:dyn_offset+32+size], offset+4 else: - raise NotImplemented(ty) + raise NotImplementedError(ty) @staticmethod def parse(signature, data):