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 dbf9290 commit dc456afCopy full SHA for dc456af
src/model/transaction/Transaction.ts
@@ -317,9 +317,9 @@ export abstract class Transaction {
317
*/
318
public hasMissingSignatures(): boolean {
319
return this.transactionInfo != null && this.transactionInfo.height.compact() === 0
320
- && this.transactionInfo.hash !== undefined
+ && (this.transactionInfo.hash !== undefined
321
&& this.transactionInfo.merkleComponentHash !== undefined
322
- && this.transactionInfo.hash.toUpperCase() === this.transactionInfo.merkleComponentHash.toUpperCase();
+ && this.transactionInfo.hash.toUpperCase() !== this.transactionInfo.merkleComponentHash.toUpperCase());
323
}
324
325
/**
0 commit comments