MCPcopy Create free account
hub / github.com/SeismicSystems/summit / at

Method at

types/src/reth.rs:310–312  ·  view source on GitHub ↗

Creates a Reth builder which will execute `reth` at the given path. # Example ``` use summit_types::reth::Reth; # fn a() { let reth = Reth::at("../reth/target/release/reth").spawn(); println!("Reth running at `{}`", reth.endpoint()); # } ```

(path: impl Into<PathBuf>)

Source from the content-addressed store, hash-verified

308 /// # }
309 /// ```
310 pub fn at(path: impl Into<PathBuf>) -> Self {
311 Self::new().path(path)
312 }
313
314 /// Sets the `path` to the `reth` executable
315 ///

Callers

nothing calls this directly

Calls 1

pathMethod · 0.80

Tested by

no test coverage detected