Skip to content

Commit

Permalink
node: Make 'run' docstring a bit more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
lutter committed Sep 23, 2022
1 parent befb466 commit e519812
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions node/src/bin/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,14 @@ pub enum Command {
/// The deployments to rewind (see `help info`)
deployments: Vec<DeploymentSearch>,
},
/// Deploy and run an arbitrary subgraph up to a certain block, although it can surpass it by a few blocks, it's not exact (use for dev and testing purposes) -- WARNING: WILL RUN MIGRATIONS ON THE DB, DO NOT USE IN PRODUCTION
/// Deploy and run an arbitrary subgraph up to a certain block
///
/// Also worth noting that the deployed subgraph will be removed at the end.
/// The run can surpass it by a few blocks, it's not exact (use for dev
/// and testing purposes) -- WARNING: WILL RUN MIGRATIONS ON THE DB, DO
/// NOT USE IN PRODUCTION
///
/// Also worth noting that the deployed subgraph will be removed at the
/// end.
Run {
/// Network name (must fit one of the chain)
network_name: String,
Expand Down

0 comments on commit e519812

Please sign in to comment.