Skip to content
Snippets Groups Projects

BMA.tx Re-introduce empty 'receiving' field + release v1.8.7 as stable

Merged Moul requested to merge release/1.8.7 into release/1.8
Files
8
@@ -154,6 +154,7 @@ export class TransactionBinding extends AbstractController {
@@ -154,6 +154,7 @@ export class TransactionBinding extends AbstractController {
dbTxHistory: {
dbTxHistory: {
sent?: DBTx[];
sent?: DBTx[];
received?: DBTx[];
received?: DBTx[];
 
receiving?: DBTx[];
sending?: DBTx[];
sending?: DBTx[];
pending?: DBTx[];
pending?: DBTx[];
}
}
@@ -164,6 +165,7 @@ export class TransactionBinding extends AbstractController {
@@ -164,6 +165,7 @@ export class TransactionBinding extends AbstractController {
history: {
history: {
sending: dbTxHistory.sending?.map(dbtx2HttpTxOfHistory) || [],
sending: dbTxHistory.sending?.map(dbtx2HttpTxOfHistory) || [],
received: dbTxHistory.received?.map(dbtx2HttpTxOfHistory) || [],
received: dbTxHistory.received?.map(dbtx2HttpTxOfHistory) || [],
 
receiving: dbTxHistory.receiving?.map(dbtx2HttpTxOfHistory) || [],
sent: dbTxHistory.sent?.map(dbtx2HttpTxOfHistory) || [],
sent: dbTxHistory.sent?.map(dbtx2HttpTxOfHistory) || [],
pending: dbTxHistory.pending?.map(dbtx2HttpTxOfHistory) || [],
pending: dbTxHistory.pending?.map(dbtx2HttpTxOfHistory) || [],
},
},
Loading