From 15cd479103054e0960f5d4362247614a28758f0d Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 6 Sep 2016 22:09:13 +0100 Subject: Fix owned std contract --- std/owned.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std') 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) { - _ + _; } } -- cgit