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

Method args

types/src/reth.rs:437–446  ·  view source on GitHub ↗

Adds multiple arguments to pass to `reth`. Pass any args that is not supported by the builder.

(mut self, args: I)

Source from the content-addressed store, hash-verified

435 ///
436 /// Pass any args that is not supported by the builder.
437 pub fn args<I, S>(mut self, args: I) -> Self
438 where
439 I: IntoIterator<Item = S>,
440 S: Into<OsString>,
441 {
442 for arg in args {
443 self = self.arg(arg);
444 }
445 self
446 }
447
448 /// Consumes the builder and spawns `reth`.
449 ///

Callers 1

try_spawnMethod · 0.80

Calls 1

argMethod · 0.80

Tested by

no test coverage detected