Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
```