aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/scripts/transaction-manager.js10
2 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f1ec6823..113d2f7cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,7 @@
## Current Master
+- Create visible difference in transaction history between a approved but not yet included in a block transaction and a transaction who has been confirmed.
- Fix memory leak in RPC Cache
- Override RPC commands eth_syncing and web3_clientVersion
- Remove certain non-essential permissions from certain builds.
diff --git a/app/scripts/transaction-manager.js b/app/scripts/transaction-manager.js
index a279ba23a..f83bc41c9 100644
--- a/app/scripts/transaction-manager.js
+++ b/app/scripts/transaction-manager.js
@@ -262,12 +262,18 @@ module.exports = class TransactionManager extends EventEmitter {
var txHash = tx.hash
var txId = tx.id
if (!txHash) {
- tx.err = { errCode: 'No hash was provided', message: 'Tx could possibly have not been submitted or an error accrued during signing'}
+ tx.err = {
+ errCode: 'No hash was provided',
+ message: 'Tx could possibly have not been submitted or an error accrued during signing',
+ }
return this.updateTx(tx)
}
this.txProviderUtils.query.getTransactionByHash(txHash, (err, txMeta) => {
if (err) {
- tx.err = {errorCode: err, message: 'Tx could possibly have not been submitted to the block chain',}
+ tx.err = {
+ errorCode: err,
+ message: 'Tx could possibly have not been submitted to the block chain',
+ }
this.updateTx(tx)
return console.error(err)
}