| 2893 | } |
| 2894 | |
| 2895 | bool CWallet::IsAddressPreviouslySpent(const CTxDestination& dest) const |
| 2896 | { |
| 2897 | if (auto* data{common::FindKey(m_address_book, dest)}) return data->previously_spent; |
| 2898 | return false; |
| 2899 | } |
| 2900 | |
| 2901 | std::vector<std::string> CWallet::GetAddressReceiveRequests() const |
| 2902 | { |