Skip to content
Snippets Groups Projects
Commit 5353612d authored by bpresles's avatar bpresles
Browse files

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

parent d4e6e46c
No related branches found
No related tags found
No related merge requests found
......@@ -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)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment