-
Notifications
You must be signed in to change notification settings - Fork 782
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
Generalize session-related traits for different type of session management without buffering #463
Labels
I4-refactor
Code needs refactoring.
Comments
kianenigma
changed the title
Generalize session-related traits for different type of session management
Generalize session-related traits for different type of session management without buffering
Apr 21, 2021
Hey, is anyone still working on this? Due to the inactivity this issue has been automatically marked as stale. It will be closed if no further activity occurs. Thank you for your contributions. |
will take some time, but this is super important actually. |
the-right-joyce
added
I4-refactor
Code needs refactoring.
and removed
I7-refactor
labels
Aug 25, 2023
claravanstaden
pushed a commit
to Snowfork/polkadot-sdk
that referenced
this issue
Dec 8, 2023
* initial commit * add solidity check * working
helin6
pushed a commit
to boolnetwork/polkadot-sdk
that referenced
this issue
Feb 5, 2024
…aritytech#463) Bumps [tar](https://github.com/npm/node-tar) from 4.4.15 to 4.4.19. - [Release notes](https://github.com/npm/node-tar/releases) - [Changelog](https://github.com/npm/node-tar/blob/main/CHANGELOG.md) - [Commits](isaacs/node-tar@v4.4.15...v4.4.19) --- updated-dependencies: - dependency-name: tar dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current session pallet is hardcoded to always have 1 session delay, and all the surrounding
trait
s (SessionManager
,SessionHander
,OneSessionHandler
) are also somehow pointing at this.If you were to write a custom session pallet with 2 sessions delay, or much more interesting, with no delay, then using these traits would become very awkward very soon.
All of these traits and pallets need some rework to allow you to be able to combine different flavors of validator/collator selection (e.g.
pallet-staking
) with session key management (i.e.pallet-session
) and finally wire all of them to our consensus layer pallets,aura
,babe
, andgrandpa
.A good amount of ideas and convo exists around this here: paritytech/substrate#8649
The text was updated successfully, but these errors were encountered: