From 14ec1004382bf25cae9062fac406d6ead90903ba Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Fri, 28 Jun 2019 10:38:51 +0200 Subject: [PATCH] Rename DoS module to match naming conventions --- mythril/analysis/modules/dos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/analysis/modules/dos.py b/mythril/analysis/modules/dos.py index 14053991..bb2b2ea6 100644 --- a/mythril/analysis/modules/dos.py +++ b/mythril/analysis/modules/dos.py @@ -29,7 +29,7 @@ class VisitsAnnotation(StateAnnotation): return result -class DOS(DetectionModule): +class DoSModule(DetectionModule): """This module consists of a makeshift loop detector that annotates the state with a list of byte ranges likely to be loops. If a CALL or SSTORE detection is found in one of the ranges it creates a low-severity issue. This is not super precise but