Skip to content
Snippets Groups Projects

[fix] #1350 Time of transactions not being saved on SQLite table

Merged bpresles requested to merge bpresles/duniter:feature/transactions-history-invalid into dev
Files
2
@@ -87,6 +87,7 @@ export class SqliteTransactions extends SqliteTable<DBTx> implements TxsDAO {
const theDBTx = DBTx.fromTransactionDTO(tx)
theDBTx.written = true
theDBTx.block_number = block_number
theDBTx.time = time
if (!dbTx) {
await this.insert(theDBTx)
}
Loading