diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-05-24 05:55:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-24 05:55:18 +0800 |
commit | 9c316664de2eb82bdd10ab9cd6fa0a33f5185e20 (patch) | |
tree | ae20a0d348348849cbd727dd4e7ee610262d6b8a /app/scripts/controllers/transactions.js | |
parent | f4158d26f61aed1882ca5734f561e12f68726972 (diff) | |
parent | 17604f1ef5c880a391026aa02d19493d05c1dd18 (diff) | |
download | tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.tar tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.tar.gz tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.tar.bz2 tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.tar.lz tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.tar.xz tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.tar.zst tangerine-wallet-browser-9c316664de2eb82bdd10ab9cd6fa0a33f5185e20.zip |
Merge pull request #1480 from MetaMask/Version-3.7.0
Version 3.7.0
Diffstat (limited to 'app/scripts/controllers/transactions.js')
-rw-r--r-- | app/scripts/controllers/transactions.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/scripts/controllers/transactions.js b/app/scripts/controllers/transactions.js index 3d86a171e..4d3197cba 100644 --- a/app/scripts/controllers/transactions.js +++ b/app/scripts/controllers/transactions.js @@ -12,7 +12,7 @@ const denodeify = require('denodeify') const RETRY_LIMIT = 200 const RESUBMIT_INTERVAL = 10000 // Ten seconds -module.exports = class TransactionManager extends EventEmitter { +module.exports = class TransactionController extends EventEmitter { constructor (opts) { super() this.store = new ObservableStore(extend({ @@ -448,7 +448,8 @@ module.exports = class TransactionManager extends EventEmitter { const rawTx = txMeta.rawTx this.txProviderUtils.publishTransaction(rawTx, cb) } + } -const warn = () => console.warn('warn was used no cb provided') +const warn = () => log.warn('warn was used no cb provided') |