Co-authored-by: Santiago Palladino <spalladino@gmail.com> Co-authored-by: Francisco <fg@frang.io>
10 lines
184 B
Solidity
10 lines
184 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../patched/access/Ownable.sol";
|
|
|
|
contract OwnableHarness is Ownable {
|
|
function restricted() external onlyOwner {}
|
|
}
|