Convert CAddressBookData to JSON record. */
| 762 | |
| 763 | /** Convert CAddressBookData to JSON record. */ |
| 764 | static UniValue AddressBookDataToJSON(const CAddressBookData& data, const bool verbose) |
| 765 | { |
| 766 | UniValue ret(UniValue::VOBJ); |
| 767 | if (verbose) { |
| 768 | ret.pushKV("name", data.GetLabel()); |
| 769 | } |
| 770 | ret.pushKV("purpose", data.purpose); |
| 771 | return ret; |
| 772 | } |
| 773 | |
| 774 | RPCHelpMan getaddressesbylabel() |
| 775 | { |
no test coverage detected