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
In several places in the code, addresses are passed as parameters to functions. In many of these instances, the functions do not validate that the passed address is not the null address 0. In the Controller contract, this happens in functions configureController (which only checks _worker) and removeController.
In the MintController contract, on the other hand, it might be expected that the constructor sets the minterManager variable to 0, but the setMinterManager function does not prevent setting it to 0.
The text was updated successfully, but these errors were encountered:
In several places in the code, addresses are passed as parameters to functions. In many of these instances, the functions do not validate that the passed address is not the null address 0. In the Controller contract, this happens in functions configureController (which only checks _worker) and removeController.
In the MintController contract, on the other hand, it might be expected that the constructor sets the minterManager variable to 0, but the setMinterManager function does not prevent setting it to 0.
The text was updated successfully, but these errors were encountered: