diff options
author | chriseth <c@ethdev.com> | 2016-09-05 20:54:50 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-09-05 20:54:50 +0800 |
commit | 02984b8de11a9dc6ab88788bfae82530b073f1f6 (patch) | |
tree | 754aaa2856d7c57c1ff45b8a8894812ebce752fc /test/contracts/Wallet.cpp | |
parent | 341c9436a8b6f5ae49265a482519e165a7f40395 (diff) | |
download | dexon-solidity-02984b8de11a9dc6ab88788bfae82530b073f1f6.tar.gz dexon-solidity-02984b8de11a9dc6ab88788bfae82530b073f1f6.tar.zst dexon-solidity-02984b8de11a9dc6ab88788bfae82530b073f1f6.zip |
Require ";" after "_"
Diffstat (limited to 'test/contracts/Wallet.cpp')
-rw-r--r-- | test/contracts/Wallet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |