diff --git a/app/modules/bma/lib/controllers/transactions.ts b/app/modules/bma/lib/controllers/transactions.ts index de6dd2236c6e74ec9cbb4b9f4d5d695dd56182cc..046aab7b6ce57fcad24b8f3e9d11c9aa81635707 100644 --- a/app/modules/bma/lib/controllers/transactions.ts +++ b/app/modules/bma/lib/controllers/transactions.ts @@ -154,6 +154,7 @@ export class TransactionBinding extends AbstractController { dbTxHistory: { sent?: DBTx[]; received?: DBTx[]; + receiving?: DBTx[]; sending?: DBTx[]; pending?: DBTx[]; } @@ -164,6 +165,7 @@ export class TransactionBinding extends AbstractController { history: { sending: dbTxHistory.sending?.map(dbtx2HttpTxOfHistory) || [], received: dbTxHistory.received?.map(dbtx2HttpTxOfHistory) || [], + receiving: dbTxHistory.receiving?.map(dbtx2HttpTxOfHistory) || [], sent: dbTxHistory.sent?.map(dbtx2HttpTxOfHistory) || [], pending: dbTxHistory.pending?.map(dbtx2HttpTxOfHistory) || [], }, diff --git a/app/modules/bma/lib/dtos.ts b/app/modules/bma/lib/dtos.ts index d8ed1218605d37ca877ead9cb0de985b922c3e13..4b4817336737285e9069742d452aa9927ad551a0 100644 --- a/app/modules/bma/lib/dtos.ts +++ b/app/modules/bma/lib/dtos.ts @@ -876,6 +876,7 @@ export const TxHistory = { sent: [TxOfHistory], received: [TxOfHistory], sending: [TxOfHistory], + receiving: [TxOfHistory], pending: [TxOfHistory], }, }; @@ -887,6 +888,7 @@ export interface HttpTxHistory { sent: HttpTxOfHistory[]; received: HttpTxOfHistory[]; sending: HttpTxOfHistory[]; + receiving: HttpTxOfHistory[]; pending: HttpTxOfHistory[]; }; }