-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Enhancement/heritable encapsulation #692 #702
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
Changes from 1 commit
79b85f1
af02540
3598b57
b505056
6e89ffe
e5959df
3c4c019
7e0a3e7
1b66e8a
f7184a2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
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 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.