Electric-Coin-Company / zcash-android-wallet-sdk

Native Android SDK for Zcash
MIT License
5 stars 7 forks source link

Enumerate all the ways in which the wallet SQLite DB is used directly #1475

Open str4d opened 2 months ago

str4d commented 2 months ago

We want to move all reads of the wallet SQLite DB behind the Rust FFI (to remove the current dependency on the SQL views). All places that currently read from the database directly will need to be replaced by backend calls.

To ensure that the new backend APIs expose the right functionality, we need to enumerate all the ways in which the SDK currently uses the SQLite database directly.