From ae02301798fb38ae794888e0b426a3808a3a71fd Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Mon, 17 Aug 2020 11:03:14 +0530 Subject: [PATCH] Add new swc data --- mythril/analysis/swc_data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mythril/analysis/swc_data.py b/mythril/analysis/swc_data.py index 15049640..fc6c451d 100644 --- a/mythril/analysis/swc_data.py +++ b/mythril/analysis/swc_data.py @@ -30,6 +30,7 @@ ARBITRARY_JUMP = "127" DOS_WITH_BLOCK_GAS_LIMIT = "128" TYPOGRAPHICAL_ERROR = "129" UNEXPECTED_ETHER_BALANCE = "132" +EFFECT_FREE_CODE = "135" SWC_TO_TITLE = { "100": "Function Default Visibility", @@ -62,4 +63,5 @@ SWC_TO_TITLE = { "128": "DoS With Block Gas Limit", "129": "Typographical Error", "132": "Unexpected Ether Balance", + "135": "Effect Free Code", }