Skip to content
Closed
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
4 changes: 2 additions & 2 deletions docs/indexer/academy/herocourse/module4.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Update the manifest file by including a `handleStakingRewarded` handler and upda
```

::: tip Note
The `Rewarded` method was recently introduced from the block [6,713,249](https://github.com/polkadot-js/api/blob/master/packages/types-known/src/upgrades/polkadot.ts) onwards. It was previously called `Reward`. For this exercise, we will use this the new format and use a startBlock of 7,000,000.
The `Rewarded` method was recently introduced from the block [6,713,249](https://github.com/polkadot-js/api/blob/master/packages/types-known/src/upgrades/manual/polkadot.ts) onwards. It was previously called `Reward`. For this exercise, we will use this the new format and use a startBlock of 7,000,000.
:::

::: warning Important
Expand Down Expand Up @@ -648,7 +648,7 @@ query{

So far, we have used the `Rewarded` method in the manifest file.

As mentioned in the previous exercise, `Rewarded` was only recently introduced from block [6713249](https://github.com/polkadot-js/api/blob/master/packages/types-known/src/upgrades/polkadot.ts) onwards. It was previously called `Reward`.
As mentioned in the previous exercise, `Rewarded` was only recently introduced from block [6713249](https://github.com/polkadot-js/api/blob/master/packages/types-known/src/upgrades/manual/polkadot.ts) onwards. It was previously called `Reward`.

Hence, you need to update your code to capture all the staking rewards prior to this change.

Expand Down