Skip to content

Commit

Permalink
Merge pull request #831 from julianmrodri/fix-readme
Browse files Browse the repository at this point in the history
Fix example in Readme
  • Loading branch information
d-xo authored Oct 7, 2021
2 parents e41b6cd + c60fa1a commit c3c761d
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 c3c761d

Please sign in to comment.