diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-09-07 05:09:13 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-09-07 05:11:17 +0800 |
commit | 15cd479103054e0960f5d4362247614a28758f0d (patch) | |
tree | 472fa2893bddd1628a54856f33b69cb66e980e85 /std | |
parent | fbe0edb32c973166efbd5c0ac556f37fd38584d6 (diff) | |
download | dexon-solidity-15cd479103054e0960f5d4362247614a28758f0d.tar.gz dexon-solidity-15cd479103054e0960f5d4362247614a28758f0d.tar.zst dexon-solidity-15cd479103054e0960f5d4362247614a28758f0d.zip |
Fix owned std contract
Diffstat (limited to 'std')
-rw-r--r-- | std/owned.sol | 2 |
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) { - _ + _; } } |