Open code423n4 opened 3 years ago
cmichel
TimeLock.setDelay reads storage variable for event which produces an SLOAD. It should use emit DelaySet(_delay) instead of emit DelaySet(delay)
TimeLock.setDelay
SLOAD
emit DelaySet(_delay)
emit DelaySet(delay)
Fix
Handle
cmichel
Vulnerability details
TimeLock.setDelay
reads storage variable for event which produces anSLOAD
. It should useemit DelaySet(_delay)
instead ofemit DelaySet(delay)