@ckbfs/api 2.0.16 → 2.0.17
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.
|
@@ -353,11 +353,11 @@ async function createAppendV3Transaction(signer, options) {
|
|
|
353
353
|
const witnesses = [];
|
|
354
354
|
// var witnessOffsetIndex = 1;
|
|
355
355
|
// // add empty witness for signer if ckbfs's lock is the same as signer's lock
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
356
|
+
if (address.script.hash() === lock.hash()) {
|
|
357
|
+
witnesses.push("0x");
|
|
358
|
+
}
|
|
359
359
|
// add ckbfs witnesses (skip the first witness which is for signing)
|
|
360
|
-
witnesses.push(...preTx.witnesses);
|
|
360
|
+
witnesses.push(...preTx.witnesses.slice(1));
|
|
361
361
|
// Add empty witnesses for additional signer inputs
|
|
362
362
|
// This is to ensure that the transaction is valid and can be signed
|
|
363
363
|
for (let i = inputsBefore; i < preTx.inputs.length; i++) {
|
package/package.json
CHANGED
|
@@ -522,11 +522,11 @@ export async function createAppendV3Transaction(
|
|
|
522
522
|
const witnesses: any = [];
|
|
523
523
|
// var witnessOffsetIndex = 1;
|
|
524
524
|
// // add empty witness for signer if ckbfs's lock is the same as signer's lock
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
525
|
+
if (address.script.hash() === lock.hash()) {
|
|
526
|
+
witnesses.push("0x");
|
|
527
|
+
}
|
|
528
528
|
// add ckbfs witnesses (skip the first witness which is for signing)
|
|
529
|
-
witnesses.push(...preTx.witnesses);
|
|
529
|
+
witnesses.push(...preTx.witnesses.slice(1));
|
|
530
530
|
|
|
531
531
|
// Add empty witnesses for additional signer inputs
|
|
532
532
|
// This is to ensure that the transaction is valid and can be signed
|