* * TONLIB * */
| 459 | * |
| 460 | */ |
| 461 | void BaseRunner::tonlib_do_send_request(ton::tl_object_ptr<ton::tonlib_api::Function> func, |
| 462 | td::Promise<ton::tl_object_ptr<ton::tonlib_api::Object>> cb) { |
| 463 | connect(std::move(cb), tonlib_wrapper_.request_raw(std::move(func))); |
| 464 | } |
| 465 | |
| 466 | void BaseRunner::send_external_message(const block::StdAddress &to, td::Ref<vm::Cell> code, td::Ref<vm::Cell> data, |
| 467 | td::Promise<td::Unit> promise) { |
nothing calls this directly
no test coverage detected