diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-07-08 05:26:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-08 05:26:52 +0800 |
commit | ab8bae421e6b172f811694a597536c7d222043cd (patch) | |
tree | a90ad7328bf0467b0bc3aa38c0d4e4889c5e7535 | |
parent | d228f46254783885e9762a2f96ecb9c3077c5fb3 (diff) | |
download | tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.tar tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.tar.gz tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.tar.bz2 tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.tar.lz tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.tar.xz tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.tar.zst tangerine-wallet-browser-ab8bae421e6b172f811694a597536c7d222043cd.zip |
test - tx-controller - stub block-tracker method
-rw-r--r-- | test/unit/tx-controller-test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/tx-controller-test.js b/test/unit/tx-controller-test.js index c9eff5d01..9dfe0b982 100644 --- a/test/unit/tx-controller-test.js +++ b/test/unit/tx-controller-test.js @@ -18,7 +18,7 @@ describe('Transaction Controller', function () { txController = new TransactionController({ networkStore: new ObservableStore(currentNetworkId), txHistoryLimit: 10, - blockTracker: { getCurrentBlock: noop, on: noop }, + blockTracker: { getCurrentBlock: noop, on: noop, once: noop }, provider: { sendAsync: noop }, ethQuery: new EthQuery({ sendAsync: noop }), ethStore: { getState: noop }, |