modified: README.md

modified:   cli/run.go
    modified:   configfunctions/configfunctions.go
	modified:   go.mod
	modified:   go.sum
This commit is contained in:
Gregory Bednov 2025-07-12 13:30:41 +03:00
commit 0a77f9a78c
5 changed files with 11 additions and 10 deletions

View file

@ -16,11 +16,15 @@ The binary exposes several flags. To generate configuration files and keys for a
new node run:
```bash
go run . init --mode genesis
go run . init genesis
```
For joining an existing network use `--mode join` instead. Once configured you
can start the node with:
For joining an existing network use `init join` instead:
```bash
go run . init join <path to genesis.json>
```
Once configured you can start the node with:
```bash
go run .