diff --git a/packages/fireproof/src/crdt-clock.ts b/packages/fireproof/src/crdt-clock.ts index a23d2bad..a0e1f0a0 100644 --- a/packages/fireproof/src/crdt-clock.ts +++ b/packages/fireproof/src/crdt-clock.ts @@ -88,7 +88,10 @@ export class CRDTClock { async (tblocks: CarTransaction) => { head = await advanceBlocks(newHead, tblocks, head) const result = await root(tblocks, head) - for (const { cid, bytes } of [...result.additions, ...result.removals]) { + for (const { cid, bytes } of [ + ...result.additions + // ...result.removals + ]) { tblocks.putSync(cid, bytes) } return { head }