bdk/crates/file_store
志宇 51bd01b3dd
fix(file_store): recover file offset after read
Because we use wrap the file with `BufReader` with the `EntryIter`, we
need to sync the `BufReader`'s position with the file's offset when we
drop the `EntryIter`. Therefore we have a custom drop impl for
`EntryIter`.
2024-01-25 17:19:42 +09:00
..

BDK File Store

This is a simple append-only flat file implementation of Persist.

The main structure is Store, which can be used with bdk's Wallet to persist wallet data into a flat file.