From 8ea13b4da5544afc1c467b3c8123f9be0726972f Mon Sep 17 00:00:00 2001 From: Aakil Fernandes Date: Fri, 20 Nov 2015 13:11:12 -0500 Subject: [PATCH] sync->synchronously --- lib/deploy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }