hypercore 10.25.1 → 10.25.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/batch.js +3 -0
  2. package/package.json +1 -1
package/lib/batch.js CHANGED
@@ -321,7 +321,10 @@ module.exports = class HypercoreBatch extends EventEmitter {
321
321
  this._sessionByteLength = info.byteLength
322
322
  this._sessionBatch = this.session.createTreeBatch()
323
323
 
324
+ const same = this._appends === this._appendsActual
325
+
324
326
  this._appends = this._appends.slice(flushingLength)
327
+ this._appendsActual = same ? this._appends : this._appendsActual.slice(flushingLength)
325
328
  this._byteLength -= delta
326
329
 
327
330
  this.emit('flush')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hypercore",
3
- "version": "10.25.1",
3
+ "version": "10.25.2",
4
4
  "description": "Hypercore is a secure, distributed append-only log",
5
5
  "main": "index.js",
6
6
  "scripts": {