Renounce Ownership
contract SharedWallet is Allowance {
//...
function renounceOwnership() public override onlyOwner {
revert("can't renounceOwnership here"); //not possible with this smart contract
}
//...
}
Last updated
contract SharedWallet is Allowance {
//...
function renounceOwnership() public override onlyOwner {
revert("can't renounceOwnership here"); //not possible with this smart contract
}
//...
}
Last updated