misc: Add public getters to ImmutableOwnable OWNER and LENS_HUB

This commit is contained in:
vicnaum
2023-05-22 18:12:47 +02:00
parent 91fe9c1202
commit 9c5f5294bf

View File

@@ -3,8 +3,8 @@
pragma solidity ^0.8.15;
contract ImmutableOwnable {
address immutable OWNER;
address immutable LENS_HUB;
address public immutable OWNER;
address public immutable LENS_HUB;
error OnlyOwner();
error OnlyOwnerOrHub();