Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
fix(core): adjust Ganache for new cli output (#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolflo authored Feb 1, 2022
1 parent 24e7c47 commit dc1565c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-core/src/utils/ganache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ impl Ganache {

let mut line = String::new();
reader.read_line(&mut line).expect("Failed to read line from ganache process");
if line.starts_with("Listening on") {
if line.contains("Listening on") {
break
}

Expand Down

0 comments on commit dc1565c

Please sign in to comment.