We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73fecb commit a1b59c3Copy full SHA for a1b59c3
packages/core/src/Serialization/Update/ProtocolParamUpdate.ts
@@ -324,11 +324,11 @@ export class ProtocolParamUpdate {
324
case 13n: {
325
// entropy is encoded as an array of two elements, where the second elements is the entropy value
326
const size = reader.readStartArray();
327
+ reader.readEncodedValue();
328
+
329
if (size === 1) {
- reader.readEncodedValue();
330
reader.readEndArray();
331
} else {
332
params.#extraEntropy = HexBlob.fromBytes(reader.readByteString());
333
334
}
0 commit comments