grandizzy

Results 349 comments of grandizzy

> @grandizzy I don't think they would. From Matt's code: > > > If the revert data matches but the address that originated the revert does not, that is considered...

> > it's a pass. That is because when reverter address is specified `vm.expectRevert(address(countRevert));` we're not looking for the next call to revert but rather for the next reverted call...

> ```solidity > countNoRevert.count(); // If this call makes a subcall to `countRevert` and it doesn't revert, does test fail? > ``` yes, that's correct, in this case the test...

@yashagarwal1994 do you see the same behavior if setting `legacy_assertions = true` in profile default?

> It seems my vscode uses a different format which fails `test / rustfmt`, what should I do to make it consistent with foundry? pls see https://github.com/foundry-rs/foundry/blob/master/CONTRIBUTING.md#resolving-an-issue for vscode settings...

@guidanoli I don't see why to change this, doc is properly served if you `forge doc --serve --port 4000` In your case (hosting doc as static files on gh pages)...

state can now be persisted and reloaded upon restart. Going to close this, please reopen if issues. Thank you!

I think that's better (and easy achievable) with a proxy like nginx in front of anvil server

> I need it too to be able to restart a session from a specific state. @emilianobonassi this is possible in latest versions by using ``` --state This is an...