hyperbee2 1.1.1 → 1.1.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.
- package/README.md +3 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/index.js
CHANGED
|
@@ -148,7 +148,7 @@ class Hyperbee {
|
|
|
148
148
|
for (let i = 0; i < keys.length; i++) {
|
|
149
149
|
const k = tree.keys[i]
|
|
150
150
|
const blk =
|
|
151
|
-
k.seq === ptr.seq && k.core === ptr.core
|
|
151
|
+
k.seq === ptr.seq && k.core === 0 && ptr.core === 0
|
|
152
152
|
? block
|
|
153
153
|
: await context.getBlock(k.seq, k.core, activeRequests)
|
|
154
154
|
const d = blk.data[k.offset]
|