From 02984b8de11a9dc6ab88788bfae82530b073f1f6 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 5 Sep 2016 14:54:50 +0200 Subject: Require ";" after "_" --- test/contracts/Wallet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/contracts/Wallet.cpp') diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp index 55c2e1af..d3e1b8d7 100644 --- a/test/contracts/Wallet.cpp +++ b/test/contracts/Wallet.cpp @@ -86,14 +86,14 @@ contract multiowned { // simple single-sig function modifier. modifier onlyowner { if (isOwner(msg.sender)) - _ + _; } // multi-sig function modifier: the operation must have an intrinsic hash in order // that later attempts can be realised as the same underlying operation and // thus count as confirmations. modifier onlymanyowners(bytes32 _operation) { if (confirmAndCheck(_operation)) - _ + _; } // METHODS @@ -281,7 +281,7 @@ contract daylimit is multiowned { // simple modifier for daily limit. modifier limitedDaily(uint _value) { if (underLimit(_value)) - _ + _; } // METHODS -- cgit v1.2.3