mirror of https://github.com/status-im/web3.js.git
log error on console, if api returns an error
This commit is contained in:
parent
83fad0fb59
commit
1345a8c67c
|
@ -783,6 +783,12 @@ ProviderManager.prototype.send = function(data) {
|
|||
//TODO: handle error here?
|
||||
var result = this.provider.send(data);
|
||||
result = JSON.parse(result);
|
||||
|
||||
if (result.error) {
|
||||
console.log(result.error);
|
||||
return null;
|
||||
}
|
||||
|
||||
return result.result;
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -76,6 +76,12 @@ ProviderManager.prototype.send = function(data) {
|
|||
//TODO: handle error here?
|
||||
var result = this.provider.send(data);
|
||||
result = JSON.parse(result);
|
||||
|
||||
if (result.error) {
|
||||
console.log(result.error);
|
||||
return null;
|
||||
}
|
||||
|
||||
return result.result;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue