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

fix: update blockWeights store for westend and kusama #740

Merged
merged 1 commit into from
Nov 1, 2021
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 src/chains-config/metadata-consts/kusamaConsts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const kusamaDefinitions: MetadataConsts[] = [
{
runtimeVersions: [
2027, 2028, 2029, 2030, 9000, 9010, 9030, 9040, 9050, 9070, 9080, 9090,
9100, 9110, 9111,
9100, 9110, 9111, 9122,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

9120 is missing?

Included in v0.9.12 AFAIU

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DQ: How would I go about verifying that this list of versions is correct?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

9120 is missing?

Kusama doesnt have 9120 actually (or atleast via polkadot-js types known).

DQ: How would I go about verifying that this list of versions is correct?

https://github.com/polkadot-js/api/blob/master/packages/types-known/src/upgrades/kusama.ts

It is updated pretty religiously.

],
perClass,
},
Expand Down
2 changes: 1 addition & 1 deletion src/chains-config/metadata-consts/westendConsts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const westendDefinitions: MetadataConsts[] = [
{
runtimeVersions: [
47, 48, 49, 50, 9000, 9010, 9030, 9033, 9050, 9070, 9080, 9090, 9100,
9110, 9111,
9110, 9111, 9120, 9121, 9122,
],
perClass,
},
Expand Down