Skip to content

Add ProcessedTransactions to wallet db

Luke Champine requested to merge wallet-add-db into wallet

This only adds one new field to the db, but it's a weird field. I also reorganized the db helper functions.

Relying on proper transaction ordering feels brittle. Eventually I plan to cache the transactions in memory, and use a map so that transactions can be removed based on their ID, not their index. (You could do this now, but it would require lots of db I/O).

Merge request reports