aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/controllers/transactions/lib/tx-state-history-helper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/controllers/transactions/lib/tx-state-history-helper.js b/app/scripts/controllers/transactions/lib/tx-state-history-helper.js
index 4d8f4baa4..4562568e9 100644
--- a/app/scripts/controllers/transactions/lib/tx-state-history-helper.js
+++ b/app/scripts/controllers/transactions/lib/tx-state-history-helper.js
@@ -42,7 +42,7 @@ function generateHistoryEntry (previousState, newState, note) {
if (entry[0]) {
if (note) entry[0].note = note
- entry[0].timestamp = (new Date()).getTime()
+ entry[0].timestamp = Date.now()
}
return entry
}