aboutsummaryrefslogtreecommitdiffstats
path: root/std/mortal
blob: b32e8a348a038454c41f603cfbf0155e231c9985 (plain) (blame)
1
2
3
4
5
6
7
8
import "./owned";

contract mortal is owned {
    function kill() {
        if (msg.sender == owner)
            selfdestruct(owner);
    }
}