| 154 | } |
| 155 | |
| 156 | bool WalletBatch::WriteWatchOnly(const CScript &dest, const CKeyMetadata& keyMeta) |
| 157 | { |
| 158 | if (!WriteIC(std::make_pair(DBKeys::WATCHMETA, dest), keyMeta)) { |
| 159 | return false; |
| 160 | } |
| 161 | return WriteIC(std::make_pair(DBKeys::WATCHS, dest), uint8_t{'1'}); |
| 162 | } |
| 163 | |
| 164 | bool WalletBatch::EraseWatchOnly(const CScript &dest) |
| 165 | { |