clarify param is not used

This commit is contained in:
Iuri Matias 2018-08-24 10:31:40 -04:00
parent ffbd39882a
commit 4305d63108
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ class ContractDeployer {
}); });
}, },
function applyBeforeDeploy(next) { function applyBeforeDeploy(next) {
self.plugins.emitAndRunActionsForEvent('deploy:contract:beforeDeploy', {contract: contract}, () => { self.plugins.emitAndRunActionsForEvent('deploy:contract:beforeDeploy', {contract: contract}, (_params) => {
next(); next();
}); });
}, },