| 6360 | } |
| 6361 | |
| 6362 | static void db_datastore_remove(struct db *db, const char **key) |
| 6363 | { |
| 6364 | struct db_stmt *stmt; |
| 6365 | |
| 6366 | stmt = db_prepare_v2(db, SQL("DELETE FROM datastore" |
| 6367 | " WHERE key = ?")); |
| 6368 | db_bind_datastore_key(stmt, key); |
| 6369 | db_exec_prepared_v2(take(stmt)); |
| 6370 | } |
| 6371 | |
| 6372 | void wallet_datastore_save_utxo_description(struct db *db, |
| 6373 | const struct bitcoin_outpoint *outpoint, |
no test coverage detected