fix(embarkjs/blockchain): pass error only when there is an error

This commit is contained in:
Jonathan Rainville 2019-02-06 14:52:29 -05:00 committed by Iuri Matias
parent 991d958436
commit fdd8ad5321
1 changed files with 0 additions and 60 deletions

View File

@ -1,60 +0,0 @@
/*global Web3*/
const __embarkWeb3 = {};
__embarkWeb3.init = function(_config) {
// Check if the global web3 object uses the old web3 (0.x)
if (global.web3 && typeof global.web3.version !== 'string') {
// If so, use a new instance using 1.0, but use its provider
this.web3 = new Web3(global.web3.currentProvider);
} else {
this.web3 = global.web3 || new Web3();
}
global.web3 = this.web3;
};
__embarkWeb3.getInstance = function () {
return this.web3;
};
__embarkWeb3.getAccounts = function () {
return this.web3.eth.getAccounts(...arguments);
};
__embarkWeb3.getNewProvider = function (providerName, ...args) {
return new Web3.providers[providerName](...args);
};
__embarkWeb3.setProvider = function (provider) {
return this.web3.setProvider(provider);
};
__embarkWeb3.getCurrentProvider = function () {
return this.web3.currentProvider;
};
__embarkWeb3.getDefaultAccount = function () {
return this.web3.eth.defaultAccount;
};
__embarkWeb3.setDefaultAccount = function (account) {
this.web3.eth.defaultAccount = account;
};
__embarkWeb3.newContract = function (options) {
return new this.web3.eth.Contract(options.abi, options.address);
};
__embarkWeb3.send = function () {
return this.web3.eth.sendTransaction(...arguments);
};
__embarkWeb3.toWei = function () {
return this.web3.toWei(...arguments);
};
__embarkWeb3.getNetworkId = function () {
return this.web3.eth.net.getId();
};