| 767 | } |
| 768 | |
| 769 | UniValue ProcessReply(const UniValue &reply) override |
| 770 | { |
| 771 | UniValue result(UniValue::VOBJ); |
| 772 | result.pushKV("address", address_str); |
| 773 | result.pushKV("blocks", reply.get_obj()["result"]); |
| 774 | return JSONRPCReplyObj(std::move(result), NullUniValue, /*id=*/1, JSONRPCVersion::V2); |
| 775 | } |
| 776 | protected: |
| 777 | std::string address_str; |
| 778 | }; |
nothing calls this directly
no test coverage detected