-
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
Enhancement/heritable encapsulation #692 #702
Changes from 6 commits
79b85f1
af02540
3598b57
b505056
6e89ffe
e5959df
3c4c019
7e0a3e7
1b66e8a
f7184a2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,7 @@ | |
}, | ||
"dependencies": { | ||
"dotenv": "^4.0.0", | ||
"ethjs-abi": "^0.2.1" | ||
"ethjs-abi": "^0.2.1", | ||
"lint": "^1.1.2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you mistakenly installed this package. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are correct. Fixed. |
||
} | ||
} |
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.
As of #666 we've adopted the convention that private state variables with public getters follow the naming convention that
_
, andIn this case, for example, we'd have
address private heir_
andfunction heir() public view
.Can you please change the PR to follow this convention?
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.
Will do.