Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/sdk-coin-canton/src/canton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ export class Canton extends BaseCoin {
case TransactionType.AllocationAllocate:
case TransactionType.AllocationRequest:
case TransactionType.EndInvestorOnboardingOffer:
case TransactionType.AllocationAllocateWithdrawn:
// There is no recipient info to verify for these transaction types, so always return true.
return true;
case TransactionType.CantonCommand:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,8 @@ export class Transaction extends BaseTransaction {
outputAmount = txData.amount;
break;
}
case TransactionType.TransferOfferWithdrawn: {
case TransactionType.TransferOfferWithdrawn:
case TransactionType.AllocationAllocateWithdrawn: {
const txData = this.toJson();
const input: ITransactionRecipient = {
address: txData.receiver,
Expand Down
Loading