File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class Ganache {
20
20
this . _registerStatusCheck ( ) ;
21
21
this . _getProvider ( ) ; // No need to return anything, we just want to populate currentProvider
22
22
this . embark . logger . info ( __ ( 'Blockchain node is ready' ) . cyan ) ;
23
- cb ( ) ;
23
+ cb ( null , true ) ;
24
24
} ,
25
25
stopFn : ( cb ) => {
26
26
this . currentProvider = null ;
Original file line number Diff line number Diff line change @@ -78,9 +78,9 @@ export default class Blockchain {
78
78
return cb ( null , true ) ;
79
79
}
80
80
// start node
81
- client . launchFn . call ( client , ( ) => {
81
+ client . launchFn . call ( client , ( _err , isVM ) => {
82
82
started ( ) ;
83
- cb ( ) ;
83
+ cb ( null , isVM ) ;
84
84
} ) ;
85
85
} ) ;
86
86
} ) ;
Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ export default class ProxyManager {
130
130
131
131
// HTTP
132
132
this . httpProxy = await new Proxy ( {
133
- endpoint,
134
133
events : this . events ,
135
134
isWs : false ,
136
135
logger : this . logger ,
You can’t perform that action at this time.
0 commit comments