mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-02 08:56:11 +00:00
hotfix: callback with wrong parameter order
This commit is contained in:
parent
82726e07e1
commit
6647c31d38
@ -39,7 +39,7 @@ class DeployManager {
|
|||||||
self.events.emit('contractsDeployed', contractsManager);
|
self.events.emit('contractsDeployed', contractsManager);
|
||||||
return done();
|
return done();
|
||||||
}
|
}
|
||||||
return callback(contractsManager, null);
|
return callback(null, contractsManager);
|
||||||
},
|
},
|
||||||
function checkWeb3IsConnected(contractsManager, callback) {
|
function checkWeb3IsConnected(contractsManager, callback) {
|
||||||
if (!self.web3) {
|
if (!self.web3) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user