rename blockchain connector

This commit is contained in:
Iuri Matias 2018-07-27 15:36:16 -04:00
parent c75ffc4375
commit 6c662c02c6

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;
@ -277,5 +277,5 @@ class Blockchain {
}
}
module.exports = Blockchain;
module.exports = BlockchainConnector;