corestore 7.6.0 → 7.6.1
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -235,7 +235,8 @@ class Corestore extends ReadyResource {
|
|
|
235
235
|
: Hypercore.defaultStorage(storage, {
|
|
236
236
|
id: opts.id,
|
|
237
237
|
allowBackup: opts.allowBackup,
|
|
238
|
-
readOnly: opts.readOnly
|
|
238
|
+
readOnly: opts.readOnly,
|
|
239
|
+
wait: opts.wait
|
|
239
240
|
})
|
|
240
241
|
this.streamTracker = this.root ? this.root.streamTracker : new StreamTracker()
|
|
241
242
|
this.cores = this.root ? this.root.cores : new CoreTracker()
|