minime/contracts/Controlled.sol

26 lines
698 B
Solidity
Raw Permalink Normal View History

2023-09-12 14:22:43 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
2023-09-12 18:27:44 +00:00
error NotAuthorized();
contract Controlled {
/// @notice The address of the controller is the only address that can call
/// a function with this modifier
modifier onlyController() {
2023-09-12 18:27:44 +00:00
if (msg.sender != controller) revert NotAuthorized();
_;
}
2023-09-12 14:22:43 +00:00
address payable public controller;
constructor() {
controller = payable(msg.sender);
}
/// @notice Changes the controller of the contract
/// @param _newController The new controller of the contract
2023-09-12 14:22:43 +00:00
function changeController(address payable _newController) public onlyController {
controller = _newController;
}
}