| 760 | { |
| 761 | public: |
| 762 | UniValue PrepareRequest(const std::string& method, const std::vector<std::string>& args) override |
| 763 | { |
| 764 | address_str = args.at(1); |
| 765 | UniValue params{RPCConvertValues("generatetoaddress", args)}; |
| 766 | return JSONRPCRequestObj("generatetoaddress", params, 1); |
| 767 | } |
| 768 | |
| 769 | UniValue ProcessReply(const UniValue &reply) override |
| 770 | { |
nothing calls this directly
no test coverage detected