diff --git a/lib/contracts/blockchain.js b/lib/contracts/blockchain.js index 9ba0f29a..a4454c9e 100644 --- a/lib/contracts/blockchain.js +++ b/lib/contracts/blockchain.js @@ -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;