| 428 | } |
| 429 | |
| 430 | bool AddressTableModel::getAddressData(const QString &address, |
| 431 | std::string* name, |
| 432 | std::string* purpose) const { |
| 433 | CTxDestination destination = DecodeDestination(address.toStdString()); |
| 434 | return walletModel->wallet().getAddress(destination, name, /* is_mine= */ nullptr, purpose); |
| 435 | } |
| 436 | |
| 437 | int AddressTableModel::lookupAddress(const QString &address) const |
| 438 | { |
nothing calls this directly
no test coverage detected