hypercore 11.1.1 → 11.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.
Files changed (2) hide show
  1. package/lib/messages.js +3 -3
  2. package/package.json +4 -2
package/lib/messages.js CHANGED
@@ -141,7 +141,7 @@ const manifestv0 = {
141
141
  hash: c.fixed32.decode(state),
142
142
  length: 0
143
143
  },
144
- linked: []
144
+ linked: null
145
145
  }
146
146
  }
147
147
 
@@ -153,7 +153,7 @@ const manifestv0 = {
153
153
  quorum: 1,
154
154
  signers: [signer.decode(state)],
155
155
  prologue: null,
156
- linked: []
156
+ linked: null
157
157
  }
158
158
  }
159
159
 
@@ -166,7 +166,7 @@ const manifestv0 = {
166
166
  quorum: c.uint.decode(state),
167
167
  signers: signerArray.decode(state),
168
168
  prologue: null,
169
- linked: []
169
+ linked: null
170
170
  }
171
171
  }
172
172
  }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "hypercore",
3
- "version": "11.1.1",
3
+ "version": "11.1.2",
4
4
  "description": "Hypercore is a secure, distributed append-only log",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "standard && node test/all.js",
8
+ "test:bare": "bare test/all.js",
8
9
  "test:generate": "brittle -r test/all.js test/*.js"
9
10
  },
10
11
  "repository": {
@@ -73,6 +74,7 @@
73
74
  "standard": "^17.0.0",
74
75
  "test-tmp": "^1.0.2",
75
76
  "tiny-byte-size": "^1.1.0",
76
- "udx-native": "^1.6.1"
77
+ "udx-native": "^1.6.1",
78
+ "uncaughts": "^1.1.0"
77
79
  }
78
80
  }