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
Double check how SnapshotMap handles multiple updates of one entry in one block.
If we move from 2 => 3 and then 3 => 5 in one block, we should store a diff of {old: 2, new: 5}.
That means queries at h should return 2 and queries at h+1 should return 5.
I don't think this is fully the case (I think it keeps {old: 2, new: 3} which is almost but not exactly correct
The text was updated successfully, but these errors were encountered:
Double check how
SnapshotMap
handles multiple updates of one entry in one block.If we move from 2 => 3 and then 3 => 5 in one block, we should store a diff of
{old: 2, new: 5}
.That means queries at
h
should return 2 and queries ath+1
should return 5.I don't think this is fully the case (I think it keeps
{old: 2, new: 3}
which is almost but not exactly correctThe text was updated successfully, but these errors were encountered: