add missing module init

This commit is contained in:
Iuri Matias 2018-05-28 11:10:09 -04:00
parent a25330ddec
commit 3750fc297b
1 changed files with 9 additions and 0 deletions

View File

@ -147,6 +147,15 @@ class Engine {
});
}
namingSystem(_options) {
this.registerModule('ens', {
logger: this.logger,
events: this.events,
web3: this.blockchain.web3,
namesConfig: this.config.namesystemConfig
});
}
codeRunnerService(_options) {
this.codeRunner = new CodeRunner({
plugins: this.plugins,