Fix build issues

This commit is contained in:
2026-05-04 05:04:28 +00:00
parent ccfaf3fd70
commit 6196d33b2a
8 changed files with 56 additions and 33 deletions

View File

@@ -138,7 +138,7 @@ export class HistoryService {
utxo.outpointIndex,
);
ownOutpoints.add(outpointKey);
ownLockingBytecodes.add(utxo.lockingBytecode);
ownLockingBytecodes.add(utxo.scriptHash);
outpointValueSatoshis.set(outpointKey, BigInt(utxo.valueSatoshis));
}
@@ -521,7 +521,7 @@ export class HistoryService {
const originKey = this.getUtxoOriginKey(
utxo.templateIdentifier,
utxo.outputIdentifier,
utxo.lockingBytecode,
utxo.scriptHash,
);
return invitationByUtxoOrigin.get(originKey)?.invitationIdentifier;
}
@@ -533,7 +533,7 @@ export class HistoryService {
const originKey = this.getUtxoOriginKey(
utxo.templateIdentifier,
utxo.outputIdentifier,
utxo.lockingBytecode,
utxo.scriptHash,
);
return invitationByUtxoOrigin.get(originKey)?.roleIdentifier;
}