aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-11-16 05:39:42 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-11-16 05:43:15 +0800
commit64296df30990e03b853dbffbce0e3b9150233220 (patch)
tree52a1e9fef97105f8b02ff804043ef29279506781 /app/scripts/lib
parent1db0bc4b2aa3297e2a621ad3a4378cb940fb90c3 (diff)
parent68d5b459ed406fd8d5e460e3208250530b21aa43 (diff)
downloadtangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.tar
tangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.tar.gz
tangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.tar.bz2
tangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.tar.lz
tangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.tar.xz
tangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.tar.zst
tangerine-wallet-browser-64296df30990e03b853dbffbce0e3b9150233220.zip
Resolve merge conflicts.
Diffstat (limited to 'app/scripts/lib')
-rw-r--r--app/scripts/lib/idStore.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js
index 31895b9bc..eb625987f 100644
--- a/app/scripts/lib/idStore.js
+++ b/app/scripts/lib/idStore.js
@@ -246,7 +246,7 @@ IdentityStore.prototype.addUnconfirmedTransaction = function (txParams, onTxDone
function analyzeForDelegateCall (cb) {
if (txParams.to) {
query.getCode(txParams.to, (err, result) => {
- if (err) return cb(err)
+ if (err) return cb(err.message || err)
var containsDelegateCall = self.checkForDelegateCall(result)
txData.containsDelegateCall = containsDelegateCall
cb()
@@ -261,8 +261,8 @@ IdentityStore.prototype.addUnconfirmedTransaction = function (txParams, onTxDone
// 1 billion gas for estimation
var gasLimit = '0x3b9aca00'
estimationParams.gas = gasLimit
- query.estimateGas(estimationParams, function (err, result) {
- if (err) return cb(err)
+ query.estimateGas(estimationParams, function(err, result){
+ if (err) return cb(err.message || err)
if (result === estimationParams.gas) {
txData.simulationFails = true
query.getBlockByNumber('latest', true, function (err, block) {
@@ -280,7 +280,7 @@ IdentityStore.prototype.addUnconfirmedTransaction = function (txParams, onTxDone
}
function didComplete (err) {
- if (err) return cb(err)
+ if (err) return cb(err.message || err)
configManager.addTx(txData)
// signal update
self._didUpdate()