Arsenii Kulikov
Arsenii Kulikov
ah so right now when both functions are internal they are both getting inlined, thus first frame created with invocation of those fn is a `MathLibraryAbstractionLayer` delegatecall which does not...
unfortunately after compiler optimizations it is really hard to tell whether certain bytecode corresponds to an internal library, handling this is non-trivial just as handling reverts in internal contract functions...
`--rpc-url` in cast commands is coming from `RpcOpts`: https://github.com/foundry-rs/foundry/blob/e971af109b8240b8de694b23bf6d1f96ed10ae71/crates/cli/src/opts/ethereum.rs#L21-L22 and for forge we are using `EvmArgs::fork_url`: https://github.com/foundry-rs/foundry/blob/e971af109b8240b8de694b23bf6d1f96ed10ae71/crates/common/src/evm.rs#L47-L49 the latter does not have a `env = "ETH_RPC_URL"` and I don't think...
Which chain are you using?
Could you please share genesis.json anvil is initialized with?
For me running `anvil --init genesis.json` and then `cast public ` with tx payload you've provided results in successful tx inclusion, am I misunderstanding the issue?
I think we should go after the initial reason behind non-deterministic results without disabling features for snapshot runs. fuzz tests do not collect values from state since https://github.com/foundry-rs/foundry/pull/7552. So I...
@grandizzy pushed my local approach, Ig you'd have to drop your previous commit for it to actually take effect for snapshot
What is the specific nightly this is happening on and could you please share complete command and its output?
> when running a script it will no longer properly show the number of txns Are you running the script with `--slow` flag when this occurs?