| 2522 | } |
| 2523 | |
| 2524 | bool CWallet::SetAddressBook(const CTxDestination& address, const std::string& strName, const std::optional<AddressPurpose>& purpose) |
| 2525 | { |
| 2526 | WalletBatch batch(GetDatabase()); |
| 2527 | return SetAddressBookWithDB(batch, address, strName, purpose); |
| 2528 | } |
| 2529 | |
| 2530 | bool CWallet::DelAddressBook(const CTxDestination& address) |
| 2531 | { |
no outgoing calls