Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: ernestognw <ernestognw@gmail.com>
10 lines
200 B
Solidity
10 lines
200 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
import "../patched/access/Ownable2Step.sol";
|
|
|
|
contract Ownable2StepHarness is Ownable2Step {
|
|
function restricted() external onlyOwner {}
|
|
}
|