mirror of https://github.com/embarklabs/embark.git
Merge pull request #613 from embark-framework/bug_fix/maincontext-error
Fixed __mainContext error
This commit is contained in:
commit
188d175735
|
@ -106,17 +106,15 @@ class CodeGenerator {
|
|||
let result = "";
|
||||
let providerPlugins;
|
||||
|
||||
// TODO: check contractsConfig for enabled
|
||||
if (self.blockchainConfig === {} || self.blockchainConfig.enabled === false) {
|
||||
return "";
|
||||
}
|
||||
|
||||
result += Templates.utils();
|
||||
|
||||
result += Templates.main_context();
|
||||
result += Templates.load_manager();
|
||||
result += Templates.define_when_env_loaded();
|
||||
|
||||
if (self.blockchainConfig === {} || self.blockchainConfig.enabled === false) {
|
||||
return result;
|
||||
}
|
||||
|
||||
if (this.plugins) {
|
||||
providerPlugins = this.plugins.getPluginsFor('clientWeb3Provider');
|
||||
}
|
||||
|
@ -128,8 +126,12 @@ class CodeGenerator {
|
|||
} else {
|
||||
let web3Load;
|
||||
|
||||
if (this.contractsConfig === {} || this.contractsConfig.enabled === false) {
|
||||
return result;
|
||||
}
|
||||
|
||||
if (isDeployment) {
|
||||
let connection = "http://" + this.contractsConfig.deployment.host + ":" + this.contractsConfig.deployment.port;
|
||||
let connection = utils.buildUrlFromConfig(this.contractsConfig.deployment);
|
||||
web3Load = Templates.define_web3_simple({url: connection, done: 'done();'});
|
||||
} else {
|
||||
let connectionList = "[" + this.contractsConfig.dappConnection.map((x) => '"' + x + '"').join(',') + "]";
|
||||
|
|
Loading…
Reference in New Issue