Ethereum smart contract fuzzer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
echidna/tests/solidity/basic/gaslimit.sol

7 lines
107 B

contract C {
function echidna_gaslimit() public returns (bool) {
return block.gaslimit > 0;
}
}