Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function ForkedStorageBaseTrie(db, root, options) {
BaseTrie.call(this, db, root);
this._deleted = Sublevel(this.db).sublevel("deleted");
this.options = options;
this.address = options.address;
this.forkBlockNumber = options.forkBlockNumber;
this.blockchain = options.blockchain;
this.fork = options.fork;
this.web3 = new Web3(this.fork);
}