sync->synchronously

This commit is contained in:
Aakil Fernandes 2015-11-20 13:11:12 -05:00 committed by Aakil Fernandes
parent 7dac3c0832
commit 8ea13b4da5
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ Deploy.prototype.deploy_contracts = function(env, cb) {
this.deployedContracts = {}; this.deployedContracts = {};
if(this.blockchainConfig.deploy_synchronously) if(this.blockchainConfig.deploy_synchronously)
this.deploy_contract_list_sync(env, all_contracts, cb); this.deploy_contract_list_synchronously(env, all_contracts, cb);
else else
this.deploy_contract_list(all_contracts.length, env, all_contracts, cb); this.deploy_contract_list(all_contracts.length, env, all_contracts, cb);
} }