Skip to content
Snippets Groups Projects
Commit c55d3370 authored by bpresles's avatar bpresles Committed by Bertrand Presles
Browse files

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

parent 14074533
No related branches found
No related tags found
1 merge request!1276[fix] #1350 Time of transactions not being saved on SQLite table
......@@ -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.
Finish editing this message first!
Please register or to comment