diff --git a/lib/core/plugin.js b/lib/core/plugin.js index f2320bb2..44345487 100644 --- a/lib/core/plugin.js +++ b/lib/core/plugin.js @@ -206,16 +206,6 @@ Plugin.prototype.registerImportFile = function(importName, importLocation) { this.pluginTypes.push('imports'); }; -Plugin.prototype.registerAfterAllContractsDeploy = function(cb) { - this.afterContractsDeployActions.push(cb); - this.pluginTypes.push('afterContractsDeployActions'); -}; - -Plugin.prototype.registerOnDeployContracts = function(cb) { - this.onDeployActions.push(cb); - this.pluginTypes.push('onDeployActions'); -}; - Plugin.prototype.registerActionForEvent = function(eventName, cb) { if (!this.eventActions[eventName]) { this.eventActions[eventName] = []; diff --git a/lib/modules/specialconfigs/index.js b/lib/modules/specialconfigs/index.js index bd8dca71..25b299df 100644 --- a/lib/modules/specialconfigs/index.js +++ b/lib/modules/specialconfigs/index.js @@ -48,7 +48,6 @@ class SpecialConfigs { registerAfterDeployAction() { const self = this; - //this.embark.registerAfterAllContractsDeploy((cb) => { this.embark.registerActionForEvent("contracts:deploy:afterAll", (cb) => { let afterDeployCmds = self.contractsConfig.afterDeploy || [];