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 87f4cd1 commit c0abb73Copy full SHA for c0abb73
modules/sdk-coin-canton/src/lib/transaction/transaction.ts
@@ -165,7 +165,7 @@ export class Transaction extends BaseTransaction {
165
const decoded: TransactionBroadcastData = JSON.parse(Buffer.from(rawTx, 'base64').toString('utf8'));
166
this.id = decoded.submissionId;
167
this.transactionType = TransactionType[decoded.txType];
168
- if (this.transactionType !== TransactionType.TransferAcknowledge) {
+ if (this.type !== TransactionType.TransferAcknowledge) {
169
if (decoded.prepareCommandResponse) {
170
this.prepareCommand = decoded.prepareCommandResponse;
171
}
0 commit comments