mirror of
https://github.com/status-im/EIPs.git
synced 2025-02-24 12:48:20 +00:00
17 lines
581 B
Solidity
17 lines
581 B
Solidity
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
pragma solidity ^0.7.1;
|
|
import "./DAOInterface.sol";
|
|
|
|
/// @notice "Default" contract for `DAOInterface`.
|
|
/// @author Victor Porton
|
|
/// @notice Not audited, not enough tested.
|
|
contract DefaultDAOInterface is DAOInterface {
|
|
function checkAllowedRestoreAccount(address /*_oldAccount*/, address /*_newAccount*/) external pure override {
|
|
revert("unimplemented");
|
|
}
|
|
|
|
function checkAllowedUnrestoreAccount(address /*_oldAccount*/, address /*_newAccount*/) external pure override {
|
|
revert("unimplemented");
|
|
}
|
|
}
|