Skip to content

Commit 2c8e3d6

Browse files
committed
Fix indentation
1 parent f7888c9 commit 2c8e3d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/hevm/pass/transfer-simple/transfer-simple.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ contract Token {
99

1010

1111
function transfer(uint256 value, address to) public returns (uint) {
12-
balanceOf[msg.sender] = balanceOf[msg.sender] - value;
12+
balanceOf[msg.sender] = balanceOf[msg.sender] - value;
1313
balanceOf[to] = balanceOf[to] + value;
1414
return 1;
1515
}

0 commit comments

Comments
 (0)