fix(blockchain): add cert options to blockchain initialization

This commit is contained in:
Jonathan Rainville 2018-12-18 11:49:39 -05:00
parent 34d5923d54
commit bf8629dadd
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ class EmbarkController {
blockchain(env, client) { blockchain(env, client) {
this.context = [constants.contexts.blockchain]; this.context = [constants.contexts.blockchain];
return require('../lib/modules/blockchain_process/blockchain.js')(this.config.blockchainConfig, client, env, null, null, this.logger, this.events, true).run(); return require('../lib/modules/blockchain_process/blockchain.js')(this.config.blockchainConfig, client, env,
this.config.webServerConfig.certOptions, null, null, this.logger, this.events, true).run();
} }
simulator(options) { simulator(options) {