diff --git a/slither/detectors/operations/missing_events_arithmetic.py b/slither/detectors/operations/missing_events_arithmetic.py index 04291d127..340f471a5 100644 --- a/slither/detectors/operations/missing_events_arithmetic.py +++ b/slither/detectors/operations/missing_events_arithmetic.py @@ -42,7 +42,7 @@ contract C { } } ``` -`updateOwner()` has no event, so it is difficult to track off-chain changes in the buy price. +`setBuyPrice()` does not emit an event, so it is difficult to track changes in the value of `buyPrice` off-chain. """ # endregion wiki_exploit_scenario