21 lines
528 B
Solidity
21 lines
528 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
import {AccessManager} from "../access/manager/AccessManager.sol";
|
|
|
|
contract AccessManagerMock is AccessManager {
|
|
event CalledRestricted(address caller);
|
|
event CalledUnrestricted(address caller);
|
|
|
|
constructor(address initialAdmin) AccessManager(initialAdmin) {}
|
|
|
|
function fnRestricted() public onlyAuthorized {
|
|
emit CalledRestricted(msg.sender);
|
|
}
|
|
|
|
function fnUnrestricted() public {
|
|
emit CalledUnrestricted(msg.sender);
|
|
}
|
|
}
|