Skip to content

Commit 7d453e7

Browse files
committed
Clean code.
1 parent 78b0151 commit 7d453e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/vulnerabilities/timelock/Timelock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ contract Timelock
4444
function transferInitiate(address subsequent_) external
4545
{
4646
require(msg.sender == owner);
47-
timelock = block.number + 2;//NUMBER_OF_BLOCKS_IN_ONE_WEEK;
47+
timelock = block.number + NUMBER_OF_BLOCKS_IN_ONE_WEEK;
4848
subsequent = subsequent_;
4949
}
5050

0 commit comments

Comments
 (0)