-
Notifications
You must be signed in to change notification settings - Fork 46
fix: bump alloy to 0.15 #199
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
base: main
Are you sure you want to change the base?
Conversation
@@ -76,7 +76,7 @@ async fn main() -> Result<()> { | |||
|
|||
// Create a provider with both signers pointing to anvil | |||
let rpc_url = anvil.endpoint_url(); | |||
let provider = ProviderBuilder::new().wallet(wallet).on_http(rpc_url); | |||
let provider = ProviderBuilder::new().wallet(wallet).connect_http(rpc_url); |
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.
Seeing a
Sent approval: 0x93426765c406ba149df94b52df30b415bc812b7d384dbcaafb9a389a4eec3555
Error: server returned an error response: error code 3: execution reverted, data: "0x"
Does not appear to be a regression as it also appears on main
Still worth looking into
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.
Adding to the ignore list in run.sh
for 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.
added follow-up ticket for it here: #218
Motivation
Updates:
Temporarily comments out the examples related to:
Due to incompatibility in dependencies
We should filter these out from the book:
foundry_fork_db
,reth_db_layer
andreth_db_provider
Blockers
Reth usesrevm = { version = "22.0.1", default-features = false }
Foundry Fork DB usesrevm = { version = "23.0.0", features = ["std", "serde"] }
Closes: #195
Pending:
- [ ] Bumpfoundry-fork-db
after REVM compatibility (foundry-rs/foundry-fork-db#44)- [ ] Update examples to be compatible with new REVMEnd result should be a passing CI with no warningsAdded follow-up ticket here: #217
PR Checklist