diff --git a/contracts/beacon/Voucher.sol b/contracts/beacon/Voucher.sol index 0919d11..183d87b 100644 --- a/contracts/beacon/Voucher.sol +++ b/contracts/beacon/Voucher.sol @@ -31,9 +31,6 @@ contract Voucher is Initializable, IVoucher { address _owner; } - /** - * @dev Throws if called by any account other than the owner. - */ modifier onlyOwner() { require(msg.sender == owner(), "Voucher: sender is not owner"); _;