rename blockchain connector

This commit is contained in:
Iuri Matias 2018-07-27 15:36:16 -04:00 committed by Pascal Precht
parent 30f25ef389
commit 591dbf259f
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 2 additions and 2 deletions

View File

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