EIPs/assets/eip-3267/contracts/DAOInterface.sol
Victor Porton 2688f14d0a
3267: Future salaries - editorial updates (#3273)
EIP-3267 changes by author
2021-02-17 22:34:36 +08:00

14 lines
559 B
Solidity

// SPDX-License-Identifier: LGPL-3.0-or-later
pragma solidity ^0.7.1;
/// @notice The "DAO plugin" interface.
/// @author Victor Porton
/// @notice Not audited, not enough tested.
interface DAOInterface {
/// Check if `msg.sender` is an attorney allowed to restore a given account.
function checkAllowedRestoreAccount(address _oldAccount, address _newAccount) external;
/// Check if `msg.sender` is an attorney allowed to unrestore a given account.
function checkAllowedUnrestoreAccount(address _oldAccount, address _newAccount) external;
}