mirror of https://github.com/embarklabs/embark.git
fix(blockchain): add cert options to blockchain initialization
This commit is contained in:
parent
34d5923d54
commit
bf8629dadd
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue