mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #1032 from ethereum/fix-std-owned
Fix owned std contract
This commit is contained in:
commit
2e70f6bfd1
@ -3,7 +3,7 @@ contract owned {
|
|||||||
|
|
||||||
modifier onlyowner() {
|
modifier onlyowner() {
|
||||||
if (msg.sender == owner) {
|
if (msg.sender == owner) {
|
||||||
_
|
_;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user