fix(core): adjust Ganache for new cli output (#851)

This commit is contained in:
wolflo 2022-02-01 03:59:54 -07:00 committed by GitHub
parent 24e7c471e4
commit dc1565c014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
}