Skip to content
Open
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,19 +138,19 @@ cargo build --release

Start a bootstrap node for peer discovery:
```bash
cggmp21-demo bootstrap
cargo run --release bootstrap
```

Start committee members (run 3 or more):
```bash
cggmp21-demo committee --party-id 1
cggmp21-demo committee --party-id 2
cggmp21-demo committee --party-id 3
cargo run --release committee --party-id 0
cargo run --release committee --party-id 1
cargo run --release committee --party-id 2
```

Start a service node to request signatures:
```bash
cggmp21-demo service
cargo run --release service
```

Note: Each node type uses specific ports:
Expand Down