You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2021. It is now read-only.
As discussed in the #core chat room, it appears that there are still bugs with localstore GC, which result in the following storage indices (swarm-private-38 - broken ; swarm-private-0 - correct):
One idea by @janos is that this is due to handleChunkDelivery and namely the ModePutRequest at:
if po >= depth || peerPO < po {
mode = chunk.ModePutSync
} else {
// do not sync if peer that is sending us a chunk is closer to the chunk then we are
mode = chunk.ModePutRequest
}
As discussed in the #core chat room, it appears that there are still bugs with localstore GC, which result in the following storage indices (
swarm-private-38- broken ;swarm-private-0- correct):One idea by @janos is that this is due to
handleChunkDeliveryand namely theModePutRequestat: