Skip to content

Commit 197d4da

Browse files
committed
Merge branch 'history-notifications-not-being-removed' of https://github.com/hashgraph/hedera-transaction-tool into history-notifications-not-being-removed
2 parents a7517fc + b4cf74d commit 197d4da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

back-end/apps/api/src/transactions/transactions.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ export class TransactionsService {
530530
const params: any = {};
531531

532532
batch.forEach((update, idx) => {
533-
caseSQL += `WHEN :id${idx} THEN :bytes${idx} `;
533+
caseSQL += `WHEN :id${idx} THEN :bytes${idx}::bytea `;
534534
params[`id${idx}`] = update.id;
535535
params[`bytes${idx}`] = update.transactionBytes;
536536
});

0 commit comments

Comments
 (0)