Skip to content

Commit

Permalink
fix(blockchain): add cert options to blockchain initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
jrainville committed Dec 19, 2018
1 parent 34d5923 commit bf8629d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cmd/cmd_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ class EmbarkController {

blockchain(env, client) {
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) {
Expand Down

0 comments on commit bf8629d

Please sign in to comment.