-
Notifications
You must be signed in to change notification settings - Fork 11.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove duplicated constructor call in FinalizableCrowdsaleImpl #613
Remove duplicated constructor call in FinalizableCrowdsaleImpl #613
Conversation
Can you give context for this? |
Yes! See here. |
Thanks @federicobond. 🙂 I wouldn't see this as duplicated super constructor calls. I find it somewhat weird because of the Solidity inconsistency between zero-arity constructors, which are implicitly called, and non-zero-arity constructors, which aren't. Regardless, I'm all for removing the redundant constructor call in this case. Can you rebase before merging? |
057ef7f
to
3871ae2
Compare
Rebased. I agree with the inconsistency in zero-arity constructors. I'll bring it up for discussion in the Solidity repo. |
3871ae2
to
090e2fc
Compare
Rebased. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @federicobond!
…e-constructor Remove duplicated constructor call in FinalizableCrowdsaleImpl
This is going to be enforced by the compiler soon.