| 697 | |
| 698 | private: |
| 699 | static size_t WriteCallback(void *contents, size_t size, size_t nmemb, |
| 700 | std::string *userp) { |
| 701 | userp->append((char *)contents, size * nmemb); |
| 702 | return size * nmemb; |
| 703 | } |
| 704 | |
| 705 | nlohmann::json sendJsonRpc(const std::string &method, |
| 706 | const nlohmann::json ¶ms) const { |
nothing calls this directly
no outgoing calls
no test coverage detected