-
Echidna is failing when fuzzing a contract that has a function with one parameter of type dynamic `bytes`. The same contract with parameter changed to a static byte type (e.g. `bytes16`) does not fail…
-
### Component
Forge
### Have you ensured that all of these are up to date?
- [X] Foundry
- [X] Foundryup
### What version of Foundry are you on?
forge 0.2.0 (49f35c7 2022-06-30T00:31:40.009286Z)
…
-
For those of you (and me too) that have very little coding experience yet are following along with this great course I'd thought I'd share my pitfall and solution for the following issue:
If you ar…
-
### Component
Forge
### Have you ensured that all of these are up to date?
- [X] Foundry
- [X] Foundryup
### What version of Foundry are you on?
forge 0.2.0 (9b2d95d 2022-06-23T00:22:22.617534Z)
…
-
For those of you (and me too) that have very little coding experience yet are following along with this great course I'd thought I'd share my pitfall and solution for the following issue:
If you ar…
-
Hi I'm using solidity-coverage on a few contracts (all using default configuration) but on one of my contracts I'm getting:
CompilerError: Stack too deep, try removing local variables.
Compilation f…
-
**Describe the bug**
The new version sometimes reports an empty error message
I was not able to narrow down the conditions but was able to compile a simple test
**To Reproduce**
```solidity
// …
-
For use in CI it would be nice to fail the command if X% of lines are not covered. Must be possible but I can't find the option. Cheers.
-
Can someone please help me? I tried debugging it on my own for like 3 hours now and im losing my mind over it now.
I get an error while testing :
```
1) FundMe
fund
Updates t…
-
For a contract below:
```
pragma solidity >=0.8.4;
contract Matchers {
function doRevert() public pure {
revert("Revert cause");
}
}
```
Write hardhat test as below:
```
…