Missing _disableInitializers
Description
The _disableInitializers is missing in the constructor of the AnzenVotingControllerUpg contract.
Impact
Some functions use the initializer modifier in the constructor, while others use _disableInitializers, resulting in inconsistent usage patterns. According to the OpenZeppelin documentation↗,
Do not leave an implementation contract uninitialized. An uninitialized implementation contract can be taken over by an attacker, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the
_disableInitializersfunction in the constructor to automatically lock it when it is deployed.
Recommendations
Consider using _disableInitializers in the constructor.
Remediation
Anzen Labs Inc. provided the following response:
The team decided to not make changes for those issues at this time