(url: Url, proxy_url: Option<Url>)
| 104 | |
| 105 | impl FendermintClient<HttpClient> { |
| 106 | pub fn new_http(url: Url, proxy_url: Option<Url>) -> anyhow::Result<Self> { |
| 107 | let inner = http_client(url, proxy_url)?; |
| 108 | Ok(Self { inner }) |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /// Get to the underlying Tendermint client if necessary, for example to query the state of transactions. |
nothing calls this directly
no test coverage detected