Code has been added to clipboard!
Deriving from Solidity Contracts
Example
contract Mortal is Owned {
function kill() public {
if (msg.sender == owner) selfdestruct(owner);
}
}
Code has been added to clipboard!
contract Mortal is Owned {
function kill() public {
if (msg.sender == owner) selfdestruct(owner);
}
}