diff options
author | chriseth <chris@ethereum.org> | 2016-09-07 18:33:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-07 18:33:26 +0800 |
commit | 2e70f6bfd180630d41cfc493975b04f39f5d7ab1 (patch) | |
tree | 6fbdc2dc0ce51c29e27dd1ee3048eb75b7ec3dec | |
parent | 21570b15b6ce9c295de0eed6d7f51afeaac86543 (diff) | |
parent | 15cd479103054e0960f5d4362247614a28758f0d (diff) | |
download | dexon-solidity-2e70f6bfd180630d41cfc493975b04f39f5d7ab1.tar.gz dexon-solidity-2e70f6bfd180630d41cfc493975b04f39f5d7ab1.tar.zst dexon-solidity-2e70f6bfd180630d41cfc493975b04f39f5d7ab1.zip |
Merge pull request #1032 from ethereum/fix-std-owned
Fix owned std contract
-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) { - _ + _; } } |