diff --git a/packages/embark-deployment/src/contract_deployer.js b/packages/embark-deployment/src/contract_deployer.js index f9c9d9d6a..aff60dfe7 100644 --- a/packages/embark-deployment/src/contract_deployer.js +++ b/packages/embark-deployment/src/contract_deployer.js @@ -23,6 +23,7 @@ class ContractDeployer { async.waterfall([ (next) => { this.plugins.emitAndRunActionsForEvent('deployment:contract:beforeDeploy', {contract: contract}, (err, _params) => { + // TODO: confirm this really works and shouldn't be next(err, params) next(err); }); },