| 3910 | } |
| 3911 | |
| 3912 | bool CWallet::EraseDestData(const CTxDestination &dest, const std::string &key) |
| 3913 | { |
| 3914 | if (!mapAddressBook[dest].destdata.erase(key)) |
| 3915 | return false; |
| 3916 | return WalletBatch(*database).EraseDestData(EncodeDestination(dest), key); |
| 3917 | } |
| 3918 | |
| 3919 | void CWallet::LoadDestData(const CTxDestination &dest, const std::string &key, const std::string &value) |
| 3920 | { |
no test coverage detected