-
Notifications
You must be signed in to change notification settings - Fork 107
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
Local setup for Westend #1262
Local setup for Westend #1262
Conversation
Tested the E2E tests work as expected for westend local setup. @claravanstaden Just let you know I revert #1251 which does not apply to our forked polkadot-sdk or submit extrinsic will fail. But we can upgrade polkadot-sdk to a more recent version and add that back in another PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
@yrong I have updated https://github.com/Snowfork/polkadot-sdk with the latest from upstream. Please let me know if it resolves the gsprc issue for you. :) |
This reverts commit f8e4644.
Hey Clara, thanks for the upgrade. Though it still requires Snowfork/polkadot-sdk@c8f9fe0 to include the gsprc fix. Just tested the e2e tests work as expected. |
if (process.env.NODE_ENV == "production") { | ||
currentAuthorities = await api.query.beefyMmrLeaf.beefyAuthorities<AuthoritySet>() | ||
nextAuthorities = await api.query.beefyMmrLeaf.beefyNextAuthorities<AuthoritySet>() | ||
} else { | ||
currentAuthorities = await api.query.mmrLeaf.beefyAuthorities<AuthoritySet>() | ||
nextAuthorities = await api.query.mmrLeaf.beefyNextAuthorities<AuthoritySet>() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To bypass the deprecated rpc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Requires: Snowfork/polkadot-sdk#163