(&self)
| 539 | } |
| 540 | |
| 541 | pub async fn ethapi_logs(&self) -> Vec<String> { |
| 542 | match self.ethapi { |
| 543 | None => Vec::new(), |
| 544 | Some(ref c) => c.logs().await, |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | /// The HTTP endpoint of the Ethereum API *inside Docker*, if it's enabled. |
| 549 | pub fn internal_ethapi_http_endpoint(&self) -> Option<Url> { |