Build an Engine API client that talks to the node's IPC endpoint.
(&self)
| 164 | |
| 165 | /// Build an Engine API client that talks to the node's IPC endpoint. |
| 166 | pub fn engine_api(&self) -> Result<EngineApi<crate::test_utils::engine::IpcEngine>> { |
| 167 | EngineApi::<crate::test_utils::engine::IpcEngine>::new(self.engine_ipc_path.clone()) |
| 168 | } |
| 169 | |
| 170 | /// Clone the underlying blockchain provider so callers can inspect chain state. |
| 171 | pub fn blockchain_provider(&self) -> LocalNodeProvider { |