rename blockchain connector

This commit is contained in:
Iuri Matias 2018-07-27 15:36:16 -04:00
parent 999a260c24
commit 9526e61652
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@ const utils = require('../utils/utils');
const WEB3_READY = 'web3Ready';
// TODO: consider another name, this is the blockchain connector
class Blockchain {
class BlockchainConnector {
constructor(options) {
const self = this;
this.plugins = options.plugins;
@ -286,5 +286,5 @@ class Blockchain {
}
}
module.exports = Blockchain;
module.exports = BlockchainConnector;

View File

@ -195,6 +195,7 @@ class Engine {
this.registerModule('specialconfigs');
this.registerModule('console_listener', {ipc: this.ipc});
// TODO: need to refactor dependencies before moving into a module
const ContractsManager = require('../contracts/contracts.js');
this.contractsManager = new ContractsManager({
contractFiles: this.config.contractsFiles,