-
Notifications
You must be signed in to change notification settings - Fork 2.1k
chore: check compatibility of evm_version and solc #11418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks! Would you mind adding a unit test for this? For reference: foundry/crates/config/src/lib.rs Lines 4729 to 4744 in 8ce931c
This shows how to use Snapbox's foundry/crates/forge/tests/cli/debug.rs Lines 4 to 24 in 8ce931c
Thanks! |
Thanks for the suggestion! I've implemented the unit test and it passes locally. However, I'm running into an issue where the test doesn't work properly within the forgetest integration test framework. There seems to be an integration problem that I need to investigate. I'll need some time to figure this out. |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
* chore: check compatibility of evm_version and solc * use 'eprintln' instead * remove unnecessary expect * add unit test * fix test * final fix --------- Co-authored-by: 0xrusowsky <[email protected]>
Add a log if
evm_version
is not compatible with thesolc
version, to avoid the confusion of the user.