-
Notifications
You must be signed in to change notification settings - Fork 152
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
There are a few redundant functions in the eternal storage contract
like
function getBool(bytes32 _key) internal view returns (bool) {
return boolStorage[_key];
}
and
function getBoolValues(bytes32 _variable) public view returns(bool) {
return boolStorage[_variable];
}
The internal functions can be removed and code can be refactored to use the public function instead.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers