We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab08ac8 commit 20a7753Copy full SHA for 20a7753
packages/fireproof/src/crdt-clock.ts
@@ -88,7 +88,10 @@ export class CRDTClock {
88
async (tblocks: CarTransaction) => {
89
head = await advanceBlocks(newHead, tblocks, head)
90
const result = await root(tblocks, head)
91
- for (const { cid, bytes } of [...result.additions, ...result.removals]) {
+ for (const { cid, bytes } of [
92
+ ...result.additions
93
+ // ...result.removals
94
+ ]) {
95
tblocks.putSync(cid, bytes)
96
}
97
return { head }
0 commit comments