We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7888c9 commit 2c8e3d6Copy full SHA for 2c8e3d6
tests/hevm/pass/transfer-simple/transfer-simple.sol
@@ -9,7 +9,7 @@ contract Token {
9
10
11
function transfer(uint256 value, address to) public returns (uint) {
12
- balanceOf[msg.sender] = balanceOf[msg.sender] - value;
+ balanceOf[msg.sender] = balanceOf[msg.sender] - value;
13
balanceOf[to] = balanceOf[to] + value;
14
return 1;
15
}
0 commit comments