1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Add descriptive comment

This commit is contained in:
Dan Finlay 2017-01-04 14:07:08 -08:00
parent 381a60695d
commit 18e6d266c1

View File

@ -1,3 +1,12 @@
/* Ethereum Store
*
* This module is responsible for tracking any number of accounts
* and caching their current balances & transaction counts.
*
* It also tracks transaction hashes, and checks their inclusion status
* on each new block.
*/
const EventEmitter = require('events').EventEmitter
const inherits = require('util').inherits
const async = require('async')