wip
This commit is contained in:
parent
17011bdf69
commit
fe2d4231cb
@ -123,20 +123,20 @@ Bitcoin.prototype._initDefaults = function(options) {
|
|||||||
|
|
||||||
Bitcoin.prototype._initCaches = function() {
|
Bitcoin.prototype._initCaches = function() {
|
||||||
// caches valid until there is a new block
|
// caches valid until there is a new block
|
||||||
this.utxosCache = LRU(500);
|
this.utxosCache = LRU(5);
|
||||||
this.txidsCache = LRU(500);
|
this.txidsCache = LRU(5);
|
||||||
this.balanceCache = LRU(500);
|
this.balanceCache = LRU(5);
|
||||||
this.summaryCache = LRU(500);
|
this.summaryCache = LRU(5);
|
||||||
this.blockOverviewCache = LRU(12);
|
this.blockOverviewCache = LRU(12);
|
||||||
this.transactionDetailedCache = LRU(1000);
|
this.transactionDetailedCache = LRU(10);
|
||||||
|
|
||||||
// caches valid indefinitely
|
// caches valid indefinitely
|
||||||
this.transactionCache = LRU(1000);
|
this.transactionCache = LRU(10);
|
||||||
this.rawTransactionCache = LRU(500);
|
this.rawTransactionCache = LRU(5);
|
||||||
this.blockCache = LRU(12);
|
this.blockCache = LRU(12);
|
||||||
this.rawBlockCache = LRU(6);
|
this.rawBlockCache = LRU(6);
|
||||||
this.blockHeaderCache = LRU(24);
|
this.blockHeaderCache = LRU(12);
|
||||||
this.zmqKnownTransactions = LRU(50);
|
this.zmqKnownTransactions = LRU(5);
|
||||||
this.zmqKnownBlocks = LRU(1);
|
this.zmqKnownBlocks = LRU(1);
|
||||||
this.lastTip = 0;
|
this.lastTip = 0;
|
||||||
this.lastTipTimeout = false;
|
this.lastTipTimeout = false;
|
||||||
|
|||||||
@ -63,7 +63,7 @@ function Sync(node, db) {
|
|||||||
this.node = node;
|
this.node = node;
|
||||||
this.db = db;
|
this.db = db;
|
||||||
this.syncing = false;
|
this.syncing = false;
|
||||||
this.highWaterMark = 100;
|
this.highWaterMark = 10;
|
||||||
this.progressBar = null;
|
this.progressBar = null;
|
||||||
this.lastReportedBlock = 0;
|
this.lastReportedBlock = 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -652,7 +652,7 @@ WalletService.prototype._getUtxos = function(walletId, callback) {
|
|||||||
outputIndex: key.outputIndex,
|
outputIndex: key.outputIndex,
|
||||||
height: value.height,
|
height: value.height,
|
||||||
satoshis: value.satoshis,
|
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) {
|
async.map(Object.keys(self._encoding.subKeyMap), function(prefix, next) {
|
||||||
var keys = [];
|
var keys = [];
|
||||||
|
|
||||||
var walletIdBuffer = new Buffer(walletId, 'utf8');
|
|
||||||
var start = self._encoding.subKeyMap[prefix].fn.call(self._encoding, walletId);
|
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')]);
|
var end = new Buffer.concat([self._encoding.subKeyMap[prefix].fn.call(self._encoding, walletId), new Buffer('ff', 'hex')]);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user