Skip to content

Commit

Permalink
Typo fixes and updates to block-time guide
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikbratashchuk committed Aug 16, 2024
1 parent d235497 commit 2947c4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions guides/block-times.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ If you have gone through both the [GM world](./gm-world) and the
[Full and sequencer node rollup setup](./full-and-sequencer-node)
already, you're now ready to experiment with faster block times.

In your `gmd start [args...]` command, you will need to add a flag
In your `rollkit start [args...]` command, you will need to add a flag
and then the argument for block time.

The flag is:
Expand All @@ -19,8 +19,8 @@ Here is an example:

```bash
# start the chain
gmd start [existing flags...] // [!code --]
gmd start [existing flags...] --rollkit.block_time 1s // [!code ++]
rollkit start [existing flags...] // [!code --]
rollkit start [existing flags...] --rollkit.block_time 1s // [!code ++]
```

In the above example, we've changed it to one second blocks.
Expand All @@ -33,5 +33,5 @@ Alternatively, you could slow your rollup down to 30 seconds:
Or speed it up even more, to sub-second block times (100 milliseconds):

```bash
--rollkit.block_time 0.1ms
--rollkit.block_time 100ms
```

0 comments on commit 2947c4c

Please sign in to comment.