| 682 | } |
| 683 | |
| 684 | UniValue ProcessReply(const UniValue &reply) override |
| 685 | { |
| 686 | UniValue result(UniValue::VOBJ); |
| 687 | result.pushKV("address", address_str); |
| 688 | result.pushKV("blocks", reply.get_obj()["result"]); |
| 689 | return JSONRPCReplyObj(result, NullUniValue, 1); |
| 690 | } |
| 691 | protected: |
| 692 | std::string address_str; |
| 693 | }; |
nothing calls this directly
no test coverage detected