Omniscia Nori Audit
BridgedPolygonNORI Code Style Findings
BridgedPolygonNORI Code Style Findings
BPN-01C: Deprecated Function Invocation
Type | Severity | Location |
---|---|---|
Standard Conformity | ![]() | BridgedPolygonNORI.sol:L72 |
Description:
The _setupRole
function has been officially deprecated by OpenZeppelin.
Example:
contracts/BridgedPolygonNORI.sol
72_setupRole(DEPOSITOR_ROLE, childChainManagerProxy); // todo try grantRole
Recommendation:
We advise the _grantRole
function to be utilized directly.
Alleviation:
The _grantRole
function is now properly used in the contract.