aboutsummaryrefslogtreecommitdiffstats
path: root/library/controller.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-01-03 03:30:00 +0800
committerGitHub <noreply@github.com>2017-01-03 03:30:00 +0800
commitfc723e7f7c037dbeb9cf427c3bdcc9f39c26785c (patch)
tree9cb3b8fb5622aa23d4856e21405f8939505d3271 /library/controller.js
parent2ab34760b0e2e006c0b87722e8397c642eb86981 (diff)
parentfa3e708f34fce523601c39b3131bdbe858d2f85f (diff)
downloadtangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar.gz
tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar.zst
tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.zip
Merge pull request #921 from MetaMask/TxManager
Feature: TxManager handles transaction state tracking
Diffstat (limited to 'library/controller.js')
-rw-r--r--library/controller.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/controller.js b/library/controller.js
index 07419550a..5823287cc 100644
--- a/library/controller.js
+++ b/library/controller.js
@@ -21,7 +21,7 @@ function initializeZeroClient() {
// User confirmation callbacks:
showUnconfirmedMessage,
unlockAccountMessage,
- showUnconfirmedTx,
+ showUnapprovedTx,
// Persistence Methods:
setData,
loadData,
@@ -36,8 +36,8 @@ function initializeZeroClient() {
console.log('notif stub - showUnconfirmedMessage')
}
- function showUnconfirmedTx (txParams, txData, onTxDoneCb) {
- console.log('notif stub - showUnconfirmedTx')
+ function showUnapprovedTx (txParams, txData, onTxDoneCb) {
+ console.log('notif stub - showUnapprovedTx')
}
//
@@ -156,4 +156,4 @@ function initializeZeroClient() {
}
}
-} \ No newline at end of file
+}