-
Notifications
You must be signed in to change notification settings - Fork 80
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
test: switch from ethers to alloy #1602
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
56b1956
to
fbe621b
Compare
Alloy is maintained, ethers is not. This lets us get rid of some outdated dependencies as well. fixes #1601
fbe621b
to
d7d3411
Compare
We don't actually use it.
@@ -432,21 +428,7 @@ fn test_callactor_revert() { | |||
} | |||
|
|||
// Much taken from tests/env.rs | |||
abigen!(CallActorPrecompile, "./tests/contracts/CallActorPrecompile.abi"); |
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.
should we just delete all the .abi files now?
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.
Yes.
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.
yeah, fine, looks like it gives us a nice cleanup, plus you've done some additional cleanups; the .abi files seem unnecessary now so maybe we just ditch them, and the Call
suffix sucks but whatever
I'm going to merge this with all the files in-place because I want to do a bigger cleanup. |
Alloy is maintained, ethers is not. This lets us get rid of some outdated dependencies as well.
fixes #1601