Sets the `path` to the `reth` executable By default, it's expected that `reth` is in `$PATH`, see also [`std::process::Command::new()`]
(mut self, path: T)
| 316 | /// By default, it's expected that `reth` is in `$PATH`, see also |
| 317 | /// [`std::process::Command::new()`] |
| 318 | pub fn path<T: Into<PathBuf>>(mut self, path: T) -> Self { |
| 319 | self.program = Some(path.into()); |
| 320 | self |
| 321 | } |
| 322 | |
| 323 | /// Enable `dev` mode for the Reth instance. |
| 324 | pub const fn dev(mut self) -> Self { |
no outgoing calls