Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

chore: fix some comments #3017

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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/docs/general/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ After setting up an on chain identity, it must get verifiec by a registrar. This

## Setting up sub-identities

If setting up more than one validator node, it is best to set these addtional identities as sub-identities, as each account does not need to be verified by a registrar. More information on sub-identities and how to set them up can be found here.
If setting up more than one validator node, it is best to set these additional identities as sub-identities, as each account does not need to be verified by a registrar. More information on sub-identities and how to set them up can be found here.

# Validator Nodes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ const processPayoutStakers = async (
};
payoutTxs.push(payoutTx);

// Go through each of the blocks events and find the ones that corresopnd to the payoutStakers extrinsic
// Go through each of the blocks events and find the ones that correspond to the payoutStakers extrinsic
const rewardEvents = blockEvents
.filter(({ phase }: FrameSystemEventRecord) => {
const p: Phase = phase;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export const executionJob = async (
const message = `${Util.addressUrl(
nominator?.address || "",
config,
)} executed announcement in finalized block #${finalizedBlockHash} annouced at #${dataNum} \n Validators Nominated:\n ${validatorsMessage}`;
)} executed announcement in finalized block #${finalizedBlockHash} announced at #${dataNum} \n Validators Nominated:\n ${validatorsMessage}`;
logger.info(message);
if (bot) {
await bot.sendMessage(
Expand Down