The HTTP interface provides JSON-RPC request/response endpoints.
(mut provider: Provider<Http>, opts: &Options)
| 711 | |
| 712 | /// The HTTP interface provides JSON-RPC request/response endpoints. |
| 713 | async fn run_http(mut provider: Provider<Http>, opts: &Options) -> anyhow::Result<()> { |
| 714 | tracing::info!("Running the tests over HTTP..."); |
| 715 | adjust_provider(&mut provider); |
| 716 | run(&provider, opts).await?; |
| 717 | tracing::info!("HTTP tests finished"); |
| 718 | Ok(()) |
| 719 | } |
| 720 | |
| 721 | /// The WebSocket interface provides JSON-RPC request/response interactions |
| 722 | /// as well as subscriptions, both using messages over the socket. |
no test coverage detected