txdb: minor.

This commit is contained in:
Christopher Jeffrey 2016-08-11 03:14:59 -07:00
parent 26845593b9
commit 092a0968ad
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -1947,7 +1947,7 @@ PathInfo.prototype.fromTX = function fromTX(tx, table) {
paths = table[hash]; paths = table[hash];
for (j = 0; j < paths.length; j++) { for (j = 0; j < paths.length; j++) {
path = paths[j]; path = paths[j];
key = path.id + '/' + path.account; key = path.toKey();
keys[key] = true; keys[key] = true;
wallets[path.id] = true; wallets[path.id] = true;
} }
@ -2120,7 +2120,6 @@ DetailsMember.prototype.toJSON = function toJSON() {
}; };
}; };
/* /*
* Expose * Expose
*/ */