| 103 | } |
| 104 | |
| 105 | static bool datastore_key_eq(const char **k1, const char **k2) |
| 106 | { |
| 107 | return tal_count(k1) == tal_count(k2) |
| 108 | && datastore_key_startswith(k1, k2); |
| 109 | } |
| 110 | |
| 111 | static char *datastore_key_fmt(const tal_t *ctx, const char **key) |
| 112 | { |
no test coverage detected