diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-01-03 03:30:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-03 03:30:00 +0800 |
commit | fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c (patch) | |
tree | 9cb3b8fb5622aa23d4856e21405f8939505d3271 /library/controller.js | |
parent | 2ab34760b0e2e006c0b87722e8397c642eb86981 (diff) | |
parent | fa3e708f34fce523601c39b3131bdbe858d2f85f (diff) | |
download | tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar.gz tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar.bz2 tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar.lz tangerine-wallet-browser-fc723e7f7c037dbeb9cf427c3bdcc9f39c26785c.tar.xz 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.js | 8 |
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 +} |