diff --git a/lib/deploy.js b/lib/deploy.js index d5d2db29a..f8f2207c0 100644 --- a/lib/deploy.js +++ b/lib/deploy.js @@ -55,7 +55,7 @@ Deploy.prototype.deploy_contracts = function(env, cb) { this.deployedContracts = {}; if(this.blockchainConfig.deploy_synchronously) - this.deploy_contract_list_sync(env, all_contracts, cb); + this.deploy_contract_list_synchronously(env, all_contracts, cb); else this.deploy_contract_list(all_contracts.length, env, all_contracts, cb); }