Skip to content

Commit

Permalink
fixed required reassignment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kong authored and Michael Kong committed Jul 24, 2018
1 parent 3baf7b0 commit 48c51ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/solidity/MultiSigWallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ contract MultiSigWallet {
ownerExists(msg.sender)
{
require(block.timestamp.sub(lastTransactionTime) >= recoveryModeTriggerTime && required > 1);
required.sub(1);
required = required.sub(1);
lastTransactionTime = block.timestamp;
emit RecoveryModeActivated();
}
Expand Down

0 comments on commit 48c51ba

Please sign in to comment.