Merge pull request #64 from ryepdx/expose-web3

Allow users to interact with Embark's web3 instance directly
This commit is contained in:
Iuri Matias 2015-08-27 08:35:15 -04:00
commit 5865daf818
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ ChainManager = function() {
this.chainManagerConfig = {};
this.currentChain = {};
this.file = "";
this.web3 = null;
}
ChainManager.prototype.loadConfigFile = function(filename) {
@ -34,6 +35,7 @@ ChainManager.prototype.init = function(env, config) {
}
this.currentChain = this.chainManagerConfig[chainId];
this.web3 = web3;
}
ChainManager.prototype.addContract = function(contractName, code, args, address) {