From e4599ed9408c6ace65f5be283da2bb604e614e78 Mon Sep 17 00:00:00 2001 From: Josselin Date: Wed, 7 Nov 2018 15:39:36 +0100 Subject: [PATCH] Fix incorrect read information for assignement --- slither/slithir/operations/assignment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slither/slithir/operations/assignment.py b/slither/slithir/operations/assignment.py index 0440a1697..3ea100f74 100644 --- a/slither/slithir/operations/assignment.py +++ b/slither/slithir/operations/assignment.py @@ -25,7 +25,7 @@ class Assignment(OperationWithLValue): @property def read(self): - return list(self.variables) + return [self.rvalue] @property def variable_return_type(self):