@ckbfs/api 2.0.10 → 2.0.11
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.
|
@@ -222,7 +222,7 @@ async function prepareAppendV3Transaction(options) {
|
|
|
222
222
|
const combinedContent = Buffer.concat(contentChunks);
|
|
223
223
|
const newChecksum = await (0, checksum_1.updateChecksum)(previousChecksum, combinedContent);
|
|
224
224
|
// Calculate the actual witness indices where our content is placed
|
|
225
|
-
const contentStartIndex = from?.witnesses.length ||
|
|
225
|
+
const contentStartIndex = witnessStartIndex || from?.witnesses.length || 1;
|
|
226
226
|
// Create CKBFS v3 witnesses with backlink info
|
|
227
227
|
const ckbfsWitnesses = (0, witness_1.createChunkedCKBFSV3Witnesses)(contentChunks, {
|
|
228
228
|
previousTxHash,
|
package/package.json
CHANGED
|
@@ -366,7 +366,7 @@ export async function prepareAppendV3Transaction(
|
|
|
366
366
|
const newChecksum = await updateChecksum(previousChecksum, combinedContent);
|
|
367
367
|
|
|
368
368
|
// Calculate the actual witness indices where our content is placed
|
|
369
|
-
const contentStartIndex = from?.witnesses.length ||
|
|
369
|
+
const contentStartIndex = witnessStartIndex || from?.witnesses.length || 1;
|
|
370
370
|
|
|
371
371
|
// Create CKBFS v3 witnesses with backlink info
|
|
372
372
|
const ckbfsWitnesses = createChunkedCKBFSV3Witnesses(contentChunks, {
|