PasswordPusher
PasswordPusher copied to clipboard
Constructor Naming
Up to Solidity 0.4.21
constructor can be defined by the same name of its contract name.
However, this can possibly cause unintended bugs when contracts are renamed and their constructors are not renamed.
Solidity 0.4.22 and above
Use a constructor keyword and create an anonymous function.
bad habbit : function constructor(args) {....body........}
but
good habit: constructor (args) {.body..} .
@ team, is this content sufficient to make PR for this issue?