This commit is contained in:
Chris Kleeschulte 2017-02-09 17:41:39 -05:00
parent 17011bdf69
commit fe2d4231cb
3 changed files with 11 additions and 12 deletions

View File

@ -123,20 +123,20 @@ Bitcoin.prototype._initDefaults = function(options) {
Bitcoin.prototype._initCaches = function() {
// caches valid until there is a new block
this.utxosCache = LRU(500);
this.txidsCache = LRU(500);
this.balanceCache = LRU(500);
this.summaryCache = LRU(500);
this.utxosCache = LRU(5);
this.txidsCache = LRU(5);
this.balanceCache = LRU(5);
this.summaryCache = LRU(5);
this.blockOverviewCache = LRU(12);
this.transactionDetailedCache = LRU(1000);
this.transactionDetailedCache = LRU(10);
// caches valid indefinitely
this.transactionCache = LRU(1000);
this.rawTransactionCache = LRU(500);
this.transactionCache = LRU(10);
this.rawTransactionCache = LRU(5);
this.blockCache = LRU(12);
this.rawBlockCache = LRU(6);
this.blockHeaderCache = LRU(24);
this.zmqKnownTransactions = LRU(50);
this.blockHeaderCache = LRU(12);
this.zmqKnownTransactions = LRU(5);
this.zmqKnownBlocks = LRU(1);
this.lastTip = 0;
this.lastTipTimeout = false;

View File

@ -63,7 +63,7 @@ function Sync(node, db) {
this.node = node;
this.db = db;
this.syncing = false;
this.highWaterMark = 100;
this.highWaterMark = 10;
this.progressBar = null;
this.lastReportedBlock = 0;
}

View File

@ -652,7 +652,7 @@ WalletService.prototype._getUtxos = function(walletId, callback) {
outputIndex: key.outputIndex,
height: value.height,
satoshis: value.satoshis,
script: value.script
scriptPubKey: value.script.toHex()
});
});
@ -761,7 +761,6 @@ WalletService.prototype._removeWallet = function(walletId, callback) {
async.map(Object.keys(self._encoding.subKeyMap), function(prefix, next) {
var keys = [];
var walletIdBuffer = new Buffer(walletId, 'utf8');
var start = self._encoding.subKeyMap[prefix].fn.call(self._encoding, walletId);
var end = new Buffer.concat([self._encoding.subKeyMap[prefix].fn.call(self._encoding, walletId), new Buffer('ff', 'hex')]);