grandizzy
grandizzy
we are going to track this request in https://github.com/foundry-rs/foundry/issues/5435 going to martk this as dupe, please reopen if you disagree. Thank you!
@devanoneth there's a check added with https://github.com/foundry-rs/foundry/pull/7141 https://github.com/foundry-rs/foundry/blob/57bb12e022fb9ea46a4a7ca8647eb016e8d43ca3/crates/script/src/broadcast.rs#L219-L223 Could you please check if the scenarios (tx.origin) you're using are covered? thank you!
@klkvr I think this one is already implemented, maybe missing for tx.origin, can you pls chime in? thanks!
@PaulRBerg we added several improvements for if/else coverage (see https://github.com/foundry-rs/foundry/pull/8414) , however this is an edge case that would add complexity in code (and not fully justified IMO). Besides that,...
@PaulRBerg @mds1 as proposed in PR https://github.com/foundry-rs/foundry/pull/9179 here are the cheatcodes planned to be added, mind to review / share thoughts? thanks ```Solidity /// Discard this run's fuzz inputs and...
> I think this is not fixed in spirit yet. `require` should still be a branch. Linking to my comment from the PR: [#8413 (comment)](https://github.com/foundry-rs/foundry/pull/8413#issuecomment-2223638150) Thank you, will check!
we have the `--pretty` implemented, which would print something as below (not table) ```bash forge inspect Counter abi --pretty interface Counter { function getCounter() external view returns (uint256); function setCounter(uint256...
@PaulRBerg is the test to reproduce issue public now? The gas difference is because fuzzing is also done with values from state and by scraping contract bytecode (so different values...
I am not able to reproduce the issue, cannot find any duped entires as the one reported in snapshot - see attached [snapshot.txt](https://github.com/user-attachments/files/16687857/snapshot.txt) @PaulRBerg lmk if OK to close this...
> > what would a canonical refactor to the snippet I posted in the issue description look like? > @thedavidmeister the snippet can be refactored to sample below (see another...