diff options
author | kumavis <aaron@kumavis.me> | 2018-05-29 16:08:55 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-05-29 16:08:55 +0800 |
commit | 32293a959c367ce5dd585111d4ee0d873072c830 (patch) | |
tree | ef297f8470787411751d948a28d577322c92ed42 /test | |
parent | 58de5671cc26a8848b9e0e02bcd6d18bdfcd3ea8 (diff) | |
download | tangerine-wallet-browser-32293a959c367ce5dd585111d4ee0d873072c830.tar.gz tangerine-wallet-browser-32293a959c367ce5dd585111d4ee0d873072c830.tar.zst tangerine-wallet-browser-32293a959c367ce5dd585111d4ee0d873072c830.zip |
test - unit - tx-controller - fix blockTracker stub
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/app/controllers/transactions/tx-controller-test.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/app/controllers/transactions/tx-controller-test.js b/test/unit/app/controllers/transactions/tx-controller-test.js index b0cc0acda..559c4011b 100644 --- a/test/unit/app/controllers/transactions/tx-controller-test.js +++ b/test/unit/app/controllers/transactions/tx-controller-test.js @@ -29,6 +29,7 @@ describe('Transaction Controller', function () { fromAccount = getTestAccounts()[0] const blockTrackerStub = new EventEmitter() blockTrackerStub.getCurrentBlock = noop + blockTrackerStub.getLatestBlock = noop txController = new TransactionController({ provider, networkStore: new ObservableStore(currentNetworkId), |