decred / dcrwallet

A secure Decred wallet daemon written in Go (golang).
https://decred.org
ISC License
211 stars 153 forks source link

Record derived mixing change addresses #2360

Closed jrick closed 1 month ago

jrick commented 1 month ago

These database updates were being appended to a slice of updates to run in the future, but no such updates ever took place.

Since this is only done here for change addresses, and only one address is derived a time from this method, remove the deferred update batching and instead just record the derived address in the DB immediately.