fixes async on blockchains

This commit is contained in:
ramiro 2017-03-21 16:26:45 -03:00
parent af4cacf496
commit 1a8e5a5abd
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ Blockchain.prototype.run = function() {
console.log("===============================================================================".magenta);
var address = this.initChainAndGetAddress();
this.client.mainCommand(address, function(cmd) {
self.runCommand(cmd, {async:true});
shelljs.exec(cmd, {async : true});
});
};