Skip to content

Commit db2a17c

Browse files
committed
fix(Controller): mark a function that was public as external
1 parent 38fa468 commit db2a17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/governance/Controller.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ contract Controller is Governed, Pausable, IController {
7777
* @param _id Contract id
7878
* @return Address of the proxy contract for the provided id
7979
*/
80-
function getContractProxy(bytes32 _id) public view override returns (address) {
80+
function getContractProxy(bytes32 _id) external view override returns (address) {
8181
return _registry[_id];
8282
}
8383

0 commit comments

Comments
 (0)