We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given this contract:
pragma solidity ^0.4.0; contract BlindAuction { uint public biddingEnd; bool bugged = false; modifier onlyBefore(uint _time) { if (now >= _time) throw; _; } function BlindAuction( ) { uint _biddingTime = 30000; biddingEnd = now + _biddingTime; } function bid() onlyBefore(biddingEnd) { bugged = true; } function echidna_bugged() public returns (bool) { return !bugged; } }
echidna 1.4.0.0 release reliably finds a failing test, while latest master (probably after this: https://github.com/crytic/echidna/pull/455/files) does not.
The text was updated successfully, but these errors were encountered:
I think I know why this fails.
Sorry, something went wrong.
It should be fixed in #469. Please test it.
This should be fixed.
No branches or pull requests
Given this contract:
echidna 1.4.0.0 release reliably finds a failing test, while latest master (probably after this: https://github.com/crytic/echidna/pull/455/files) does not.
The text was updated successfully, but these errors were encountered: