Skip to content

Commit

Permalink
chore(deps): update alloy-sol-type-parser, remove old code (#4229)
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on authored Sep 9, 2024
1 parent 9aada24 commit 744429e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
9 changes: 5 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,3 @@ blake3 = { git = "https://github.com/gear-tech/BLAKE3", branch = "fix-clang-cl-c

# TODO: remove after https://github.com/pepyakin/wabt-rs/pull/84
wabt = { git = "https://github.com/gear-tech/wabt-rs", branch = "al-win-crt" }

# TODO: remove after https://github.com/alloy-rs/core/pull/718
alloy-sol-type-parser = { git = "https://github.com/gear-tech/alloy-core", branch = "custom-error" }
3 changes: 1 addition & 2 deletions ethexe/cli/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,8 @@ impl TestEnv {
}

pub fn start_anvil() -> AnvilInstance {
let mut anvil = Anvil::new().try_spawn().unwrap();
let anvil = Anvil::new().try_spawn().unwrap();
log::info!("📍 Anvil started at {}", anvil.ws_endpoint());
drop(anvil.child_mut().stdout.take()); //temp fix for alloy#1078
anvil
}

Expand Down
3 changes: 1 addition & 2 deletions ethexe/observer/src/observer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,7 @@ mod tests {
async fn test_deployment() -> Result<()> {
gear_utils::init_default_logger();

let mut anvil = Anvil::new().try_spawn()?;
drop(anvil.child_mut().stdout.take()); //temp fix for alloy#1078
let anvil = Anvil::new().try_spawn()?;

let ethereum_rpc = anvil.ws_endpoint();

Expand Down

0 comments on commit 744429e

Please sign in to comment.