| 597 | }; |
| 598 | |
| 599 | static UniValue DescribeWalletBlindAddress(const CWallet& wallet, const CTxDestination& dest, isminetype mine) |
| 600 | { |
| 601 | UniValue ret(UniValue::VOBJ); |
| 602 | ret.pushKVs(std::visit(DescribeWalletBlindAddressVisitor(wallet, mine), dest)); |
| 603 | return ret; |
| 604 | } |
| 605 | |
| 606 | RPCHelpMan getaddressinfo() |
| 607 | { |
no test coverage detected