Browse Source

adding needed index for email_queue.id

feat/2-step-opt
Justin Langston 7 years ago
parent
commit
622f9cf7c4
No known key found for this signature in database GPG Key ID: EBB3714C72F9FE5D
  1. 5
      lib/storage.js

5
lib/storage.js

@ -64,6 +64,9 @@ Storage.prototype._createIndexes = function() {
this.db.collection(collections.ADDRESSES).createIndex({
address: 1,
});
this.db.collection(collections.EMAIL_QUEUE).createIndex({
id: 1,
});
this.db.collection(collections.EMAIL_QUEUE).createIndex({
notificationId: 1,
});
@ -628,7 +631,7 @@ Storage.prototype.storeActiveAddresses = function(walletId, addresses, cb) {
};
// -------- --------------------------- Total
// > Time >
// > Time >
// ^to <= ^from
// ^fwdIndex => ^end
Storage.prototype.getTxHistoryCache = function(walletId, from, to, cb) {

Loading…
Cancel
Save