| 102 | } |
| 103 | |
| 104 | block::StdAddress ProxyInboundClientConnection::client_sc_address() const { |
| 105 | if (client_info_) { |
| 106 | return client_info_->client_sc_address(); |
| 107 | } else { |
| 108 | CHECK(connecting_client_info_); |
| 109 | return connecting_client_info_->smartcontract; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | void ProxyInboundClientConnection::receive_auth_query(td::BufferSlice message, td::Promise<td::BufferSlice> promise) { |
| 114 | if (client_info_ && (client_info_->is_closing() || client_info_->is_closed())) { |
no outgoing calls
no test coverage detected