Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _pre/name_reg.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ contract owned {
owner = msg.sender;
}
modifier onlyowner() {
if (msg.sender==owner) _
if (msg.sender==owner) _;
}
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/std.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ contract owned {
owner = newOwner;
}
modifier onlyowner() {
if (msg.sender==owner) _
if (msg.sender==owner) _;
}
}

Expand Down
6 changes: 3 additions & 3 deletions contracts/wallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,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
Expand Down Expand Up @@ -253,7 +253,7 @@ contract daylimit is multiowned {
// simple modifier for daily limit.
modifier limitedDaily(uint _value) {
if (underLimit(_value))
_
_;
}

// METHODS
Expand Down