Open code423n4 opened 3 years ago
itsmeSTYJ
Gas optimisation. The require check in addMember() is not required because 1) only the admin can call this function and 2) even if it were to be called again, it is overriding the storage with the same value so it doesn't change anything.
addMember()
Handle
itsmeSTYJ
Vulnerability details
Impact
Gas optimisation. The require check in
addMember()
is not required because 1) only the admin can call this function and 2) even if it were to be called again, it is overriding the storage with the same value so it doesn't change anything.