The HTTP interface provides JSON-RPC request/response endpoints.
(mut provider: Provider<Http>, opts: &Options)
| 188 | |
| 189 | /// The HTTP interface provides JSON-RPC request/response endpoints. |
| 190 | async fn run_http(mut provider: Provider<Http>, opts: &Options) -> anyhow::Result<()> { |
| 191 | tracing::info!("Running the tests over HTTP..."); |
| 192 | adjust_provider(&mut provider); |
| 193 | run(&provider, opts).await?; |
| 194 | tracing::info!("HTTP tests finished"); |
| 195 | Ok(()) |
| 196 | } |
no test coverage detected