@agentvault/agentvault 0.19.25 → 0.19.26
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/dist/cli.js +1 -1
- package/dist/cli.js.map +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -49297,7 +49297,7 @@ var init_channel = __esm({
|
|
|
49297
49297
|
previousChainLength: headerObj.previousChainLength,
|
|
49298
49298
|
messageNumber: headerObj.messageNumber
|
|
49299
49299
|
},
|
|
49300
|
-
headerSignature: hexToBytes(msgData.header_signature),
|
|
49300
|
+
headerSignature: msgData.header_signature ? hexToBytes(msgData.header_signature) : new Uint8Array(64),
|
|
49301
49301
|
ciphertext: hexToBytes(msgData.ciphertext),
|
|
49302
49302
|
nonce: hexToBytes(msgData.nonce)
|
|
49303
49303
|
};
|