Skip to content

Commit

Permalink
fix example in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmrodri committed Oct 7, 2021
1 parent e41b6cd commit c60fa1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ We can symbolically explore all possibilities to find the one that lets us withd

```solidity
function proveFail_withdraw(uint guess) public {
address(dapptutorial).transfer(1 ether);
payable(address(dapptutorial)).transfer(1 ether);
uint preBalance = address(this).balance;
dapptutorial.withdraw(guess);
uint postBalance = address(this).balance;
Expand Down

0 comments on commit c60fa1a

Please sign in to comment.