aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers/transactions.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/controllers/transactions.js')
-rw-r--r--app/scripts/controllers/transactions.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/scripts/controllers/transactions.js b/app/scripts/controllers/transactions.js
index ce709bd28..0d6b97d51 100644
--- a/app/scripts/controllers/transactions.js
+++ b/app/scripts/controllers/transactions.js
@@ -189,6 +189,11 @@ module.exports = class TransactionController extends EventEmitter {
await this.approveTransaction(txMeta.id)
}
+ async updateAndCancelTransaction (txMeta) {
+ this.txStateManager.updateTx(txMeta, 'confTx: user rejected transaction')
+ await this.cancelTransaction(txMeta.id)
+ }
+
async approveTransaction (txId) {
let nonceLock
try {