remove old methods

This commit is contained in:
Iuri Matias 2018-05-28 19:42:32 -04:00
parent 16653d491b
commit 71cd523f30
2 changed files with 0 additions and 11 deletions

View File

@ -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] = [];

View File

@ -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 || [];