| 147 | } |
| 148 | |
| 149 | void ProxyRunningRequest::receive_answer_error(ton::tl_object_ptr<cocoon_api::proxy_queryAnswerError> ans) { |
| 150 | auto final_info = create_final_info_from_old(std::move(ans->tokens_used_)); |
| 151 | receive_answer_ex_impl(*ton::create_tl_object<cocoon_api::proxy_queryAnswerErrorEx>( |
| 152 | ans->request_id_, ans->error_code_, ans->error_, 1, std::move(final_info))); |
| 153 | } |
| 154 | |
| 155 | void ProxyRunningRequest::receive_answer_ex_impl(cocoon_api::proxy_queryAnswerPartEx &ans) { |
| 156 | if (!sent_answer_) { |
nothing calls this directly
no outgoing calls
no test coverage detected