Fix owned std contract

This commit is contained in:
Alex Beregszaszi 2016-09-06 22:09:13 +01:00
parent fbe0edb32c
commit 15cd479103

View File

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