Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

fix bug: wallet execute fail #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions wallet/wallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ contract multiowned {
// that later attempts can be realised as the same underlying operation and
// thus count as confirmations.
modifier onlymanyowners(bytes32 _operation) {
require(confirmAndCheck(_operation));
_;
if (confirmAndCheck(_operation));
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there shouldn't be ';'.

_;
}

// METHODS
Expand Down