aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorfrankiebee <frankie.diamond@gmail.com>2017-09-27 13:42:59 +0800
committerfrankiebee <frankie.diamond@gmail.com>2017-09-27 13:42:59 +0800
commit0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183 (patch)
treeadb50d0379a853b8dec9bd6a6bb298ae320b7b27 /test/unit
parentb05a6f89cb2c4de1e53d96f8cac01653a8165555 (diff)
downloadtangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.tar
tangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.tar.gz
tangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.tar.bz2
tangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.tar.lz
tangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.tar.xz
tangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.tar.zst
tangerine-wallet-browser-0a94ec41d3a2877ed7cfd3c8f9e9f9d725659183.zip
pending-tx - move incrementing of the retryCount on the txMeta outside pending-tx-tracker
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/tx-controller-test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/tx-controller-test.js b/test/unit/tx-controller-test.js
index 9ffba31ee..66772ff88 100644
--- a/test/unit/tx-controller-test.js
+++ b/test/unit/tx-controller-test.js
@@ -25,7 +25,7 @@ describe('Transaction Controller', function () {
networkStore: new ObservableStore(currentNetworkId),
txHistoryLimit: 10,
blockTracker: { getCurrentBlock: noop, on: noop, once: noop },
- accountTracker: { store: {getState: noop} },
+ accountTracker: { store: { getState: noop } },
signTransaction: (ethTx) => new Promise((resolve) => {
ethTx.sign(privKey)
resolve()