aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-09-07 18:33:26 +0800
committerGitHub <noreply@github.com>2016-09-07 18:33:26 +0800
commit2e70f6bfd180630d41cfc493975b04f39f5d7ab1 (patch)
tree6fbdc2dc0ce51c29e27dd1ee3048eb75b7ec3dec
parent21570b15b6ce9c295de0eed6d7f51afeaac86543 (diff)
parent15cd479103054e0960f5d4362247614a28758f0d (diff)
downloaddexon-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.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) {
- _
+ _;
}
}