Skip to content

Commit 652ebde

Browse files
committed
remove redundant line in timelock contract
1 parent b18eb32 commit 652ebde

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ contract TimeLock {
296296
function withdraw() public {
297297
require(balances[msg.sender] > 0);
298298
require(now > lockTime[msg.sender]);
299-
uint balance = balances[msg.sender];
300299
uint transferValue = balances[msg.sender];
301300
balances[msg.sender] = 0;
302301
msg.sender.transfer(transferValue);

0 commit comments

Comments
 (0)