aboutsummaryrefslogtreecommitdiffstats
path: root/std/owned.sol
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-09-07 05:09:13 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-09-07 05:11:17 +0800
commit15cd479103054e0960f5d4362247614a28758f0d (patch)
tree472fa2893bddd1628a54856f33b69cb66e980e85 /std/owned.sol
parentfbe0edb32c973166efbd5c0ac556f37fd38584d6 (diff)
downloaddexon-solidity-15cd479103054e0960f5d4362247614a28758f0d.tar.gz
dexon-solidity-15cd479103054e0960f5d4362247614a28758f0d.tar.zst
dexon-solidity-15cd479103054e0960f5d4362247614a28758f0d.zip
Fix owned std contract
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 37f0ecb9..3d7674f5 100644
--- a/std/owned.sol
+++ b/std/owned.sol
@@ -3,7 +3,7 @@ contract owned {
modifier onlyowner() {
if (msg.sender == owner) {
- _
+ _;
}
}