@ethereumjs/statemanager
Version:
An Ethereum statemanager implementation
31 lines • 983 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Cache = void 0;
const util_1 = require("@ethereumjs/util");
const debug_1 = require("debug");
class Cache {
constructor() {
this._checkpoints = 0;
this._stats = {
size: 0,
reads: 0,
hits: 0,
writes: 0,
deletions: 0,
};
/**
* StateManager cache is run in DEBUG mode (default: false)
* Taken from DEBUG environment variable
*
* Safeguards on debug() calls are added for
* performance reasons to avoid string literal evaluation
* @hidden
*/
this.DEBUG = false;
// Skip DEBUG calls unless 'ethjs' included in environmental DEBUG variables
this.DEBUG = (0, util_1.isDebugEnabled)('ethjs');
this._debug = (0, debug_1.default)('statemanager:cache');
}
}
exports.Cache = Cache;
//# sourceMappingURL=cache.js.map