diff --git a/lib/contracts/blockchain.js b/lib/contracts/blockchain.js index 6ff218cee..5e24c9aad 100644 --- a/lib/contracts/blockchain.js +++ b/lib/contracts/blockchain.js @@ -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;