|
|
|
@ -42,7 +42,7 @@ export class TxRunner { |
|
|
|
|
|
|
|
|
|
function run (self, tx: Transaction, stamp, confirmationCb, gasEstimationForceSend = null, promptCb = null, callback = null) { |
|
|
|
|
if (Object.keys(self.pendingTxs).length) { |
|
|
|
|
return self.queusTxs.push({ tx, stamp, callback }) |
|
|
|
|
return self.queusTxs.push({ tx, stamp, confirmationCb, gasEstimationForceSend, promptCb, callback }) |
|
|
|
|
} |
|
|
|
|
self.pendingTxs[stamp] = tx |
|
|
|
|
self.execute(tx, confirmationCb, gasEstimationForceSend, promptCb, function (error, result) { |
|
|
|
@ -50,7 +50,7 @@ function run (self, tx: Transaction, stamp, confirmationCb, gasEstimationForceSe |
|
|
|
|
if (callback && typeof callback === 'function') callback(error, result) |
|
|
|
|
if (self.queusTxs.length) { |
|
|
|
|
const next = self.queusTxs.pop() |
|
|
|
|
run(self, next.tx, next.stamp, next.callback) |
|
|
|
|
run(self, next.tx, next.stamp, next.confirmationCb, next.gasEstimationForceSend, next.promptCb, next.callback) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|