mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-23 03:59:18 +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);
|
||||
return done();
|
||||
}
|
||||
return callback(contractsManager, null);
|
||||
return callback(null, contractsManager);
|
||||
},
|
||||
function checkWeb3IsConnected(contractsManager, callback) {
|
||||
if (!self.web3) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user