| 254 | } |
| 255 | |
| 256 | std::string ProxyRunningRequest::generate_proxy_debug_inner() { |
| 257 | nlohmann::json v; |
| 258 | v["type"] = "proxy_stats"; |
| 259 | v["start_time"] = start_time_unix_; |
| 260 | v["answer_receive_start_at"] = received_answer_time_unix_; |
| 261 | v["answer_receive_end_at"] = td::Clocks::system(); |
| 262 | return v.dump(); |
| 263 | } |
| 264 | |
| 265 | ton::tl_object_ptr<cocoon_api::client_queryFinalInfo> ProxyRunningRequest::create_final_info( |
| 266 | cocoon_api::proxy_queryFinalInfo *info) { |
nothing calls this directly
no outgoing calls
no test coverage detected