Skip to content

Commit

Permalink
clarify deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Nov 23, 2023
1 parent fc59e75 commit 2c13a89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/anvil/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ foundry-evm.workspace = true
alloy-primitives = { workspace = true, features = ["serde"] }
revm = { workspace = true, default-features = false, features = ["std", "serde", "memory_limit"] }
ethers-core = { workspace = true, features = ["optimism"] }
# theses are not used by anvil-core, but are required by ethers, because pulled in via foundry-common
ethers-contract = { workspace = true, features = ["optimism"] }
ethers-providers = { workspace = true, features = ["optimism"] }
ethers-middleware = { workspace = true, features = ["optimism"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/core/src/eth/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1824,7 +1824,7 @@ mod tests {
"0000000000000000000000000000000000000000000000000000000000000000",
)
.unwrap(),
from: H160::from_str("cf7f9e66af820a19257a2108375b180b0ec49167").unwrap(),
from: "cf7f9e66af820a19257a2108375b180b0ec49167".parse().unwrap(),
kind: TransactionKind::Call(Address::from_slice(
&hex::decode("61815774383099e24810ab832a5b2a5425c154d5").unwrap()[..],
)),
Expand Down

0 comments on commit 2c13a89

Please sign in to comment.