You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function Ownable.constructor(address) (flat.sol#491-496) is a strange setter. Nothing is set in constructor or set in a function without using function parameters
This is incorrect as it can clearly be seen that :
There are a few state variables that are being updated inside the constructor
Additionally, the arguments passed are also being used in the constructor.
The text was updated successfully, but these errors were encountered:
I think we missed implementing the check for the call of the base constructor, so name and symbol are considered unused. Feel free to submit a PR with a fix, or we will try to handle it ourselves soon. Thank you in any case!
I was running the slitherin tool in a smart contract that had the following constructor 👇
Slither threw an info-detector that says:
This is incorrect as it can clearly be seen that :
The text was updated successfully, but these errors were encountered: