aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-09-23 04:59:25 +0800
committerDan Finlay <dan@danfinlay.com>2017-09-23 04:59:25 +0800
commit11c8c07bfc6677e347873f02ae8c401f8d6c4dcf (patch)
treef94da3caa86d7fd7de6275d25cb9c161175208e3 /app/scripts/lib
parent977405fc7d89256a911e73b83a6678235fa1cfb8 (diff)
downloadtangerine-wallet-browser-11c8c07bfc6677e347873f02ae8c401f8d6c4dcf.tar.gz
tangerine-wallet-browser-11c8c07bfc6677e347873f02ae8c401f8d6c4dcf.tar.zst
tangerine-wallet-browser-11c8c07bfc6677e347873f02ae8c401f8d6c4dcf.zip
Refactor eth-store into account-tracker
EthStore was only being used for tracking account balances and nonces now, so I removed its block-tracking duties, renamed it account-tracker, and removed it as a dependency from `KeyringController`, so that KRC can go live on without a hard dep on it.
Diffstat (limited to 'app/scripts/lib')
-rw-r--r--app/scripts/lib/account-tracker.js (renamed from app/scripts/lib/eth-store.js)2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/eth-store.js b/app/scripts/lib/account-tracker.js
index ff22eca4a..bf949597b 100644
--- a/app/scripts/lib/eth-store.js
+++ b/app/scripts/lib/account-tracker.js
@@ -1,4 +1,4 @@
-/* Ethereum Store
+/* Account Tracker
*
* This module is responsible for tracking any number of accounts
* and caching their current balances & transaction counts.