Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Operate stake pool Script bugfixes #1218

Merged
merged 3 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/operate-a-stake-pool/block-producer-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Find `kesPeriod` by dividing the slot tip number by `slotsPerKESPeriod`.
```
kesPeriod=$((${slotNo} / ${slotsPerKESPeriod}))
echo kesPeriod: ${kesPeriod}
startKesPeriod= ${kesPeriod}
startKesPeriod=${kesPeriod}
echo startKesPeriod: ${startKesPeriod}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/operate-a-stake-pool/generating-wallet-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Create a new payment key pair: `payment.skey` & `payment.vkey`

```
cardano-cli address key-gen \
--verification-key-file ./keys/payment.vkey \
--signing-key-file ./keys/payment.skey
--verification-key-file payment.vkey \
--signing-key-file payment.skey
```

- `cardano-cli address key-gen`: generates a payment key-pair.
Expand Down
Loading