Skip to content

Eternal storage redundant functions #483

Closed
@maxsam4

Description

@maxsam4

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

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions