aboutsummaryrefslogtreecommitdiffstats
path: root/std/owned.sol
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-15 21:36:05 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-14 22:58:04 +0800
commita02cf83d86489f5d9c9439c79e27fcecb5c5ddb4 (patch)
tree6b523be71cce64075a0f027ebe3c0764dceceb7b /std/owned.sol
parent5b5367dc1237634886a8ccf1029d95b83a0d8e63 (diff)
downloaddexon-solidity-a02cf83d86489f5d9c9439c79e27fcecb5c5ddb4.tar.gz
dexon-solidity-a02cf83d86489f5d9c9439c79e27fcecb5c5ddb4.tar.zst
dexon-solidity-a02cf83d86489f5d9c9439c79e27fcecb5c5ddb4.zip
Update std to contain visibility specifiers
Diffstat (limited to 'std/owned.sol')
-rw-r--r--std/owned.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/owned.sol b/std/owned.sol
index bbb8d957..ee9860d3 100644
--- a/std/owned.sol
+++ b/std/owned.sol
@@ -9,7 +9,7 @@ contract owned {
}
}
- function owned() {
+ function owned() public {
owner = msg.sender;
}
}