Update std to contain visibility specifiers

This commit is contained in:
Alex Beregszaszi
2017-09-14 15:58:04 +01:00
parent 5b5367dc12
commit a02cf83d86
4 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ pragma solidity ^0.4.0;
import "./owned.sol";
contract mortal is owned {
function kill() {
function kill() public {
if (msg.sender == owner)
selfdestruct(owner);
}