Merge pull request #1032 from ethereum/fix-std-owned

Fix owned std contract
This commit is contained in:
chriseth 2016-09-07 12:33:26 +02:00 committed by GitHub
commit 2e70f6bfd1

View File

@ -3,7 +3,7 @@ contract owned {
modifier onlyowner() { modifier onlyowner() {
if (msg.sender == owner) { if (msg.sender == owner) {
_ _;
} }
} }