The HTTP interface provides JSON-RPC request/response endpoints.
(mut provider: Provider<Http>, opts: &Options)
| 172 | |
| 173 | /// The HTTP interface provides JSON-RPC request/response endpoints. |
| 174 | async fn run_http(mut provider: Provider<Http>, opts: &Options) -> anyhow::Result<()> { |
| 175 | tracing::info!("Running the tests over HTTP..."); |
| 176 | adjust_provider(&mut provider); |
| 177 | run(&provider, opts).await?; |
| 178 | tracing::info!("HTTP tests finished"); |
| 179 | Ok(()) |
| 180 | } |
no test coverage detected