-
Notifications
You must be signed in to change notification settings - Fork 316
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
refactor(nns): Move cast_vote_and_cascade_follow into Governance struct #2600
Draft
max-dfinity
wants to merge
13
commits into
master
Choose a base branch
from
msum/stable-neuron-support-D
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
max-dfinity
changed the title
refactor(nns): Move cast_vote_and_cascade_follow into governance
refactor(nns): Move cast_vote_and_cascade_follow into Governance struct
Nov 13, 2024
max-dfinity
changed the base branch from
master
to
msum/stable-neuron-support-C
November 13, 2024 20:09
max-dfinity
force-pushed
the
msum/stable-neuron-support-D
branch
from
November 13, 2024 20:11
e44a16d
to
abe92bd
Compare
max-dfinity
force-pushed
the
msum/stable-neuron-support-D
branch
3 times, most recently
from
November 15, 2024 20:41
706b99e
to
eb25d69
Compare
max-dfinity
force-pushed
the
msum/stable-neuron-support-C
branch
2 times, most recently
from
November 15, 2024 20:49
2cb808a
to
886676d
Compare
max-dfinity
force-pushed
the
msum/stable-neuron-support-D
branch
from
November 15, 2024 20:50
eb25d69
to
1a56916
Compare
max-dfinity
force-pushed
the
msum/stable-neuron-support-C
branch
from
November 15, 2024 20:57
886676d
to
9828e39
Compare
max-dfinity
force-pushed
the
msum/stable-neuron-support-D
branch
from
November 15, 2024 20:57
1a56916
to
73b8fa1
Compare
github-merge-queue bot
pushed a commit
that referenced
this pull request
Nov 15, 2024
This refactoring creates a state machine to handle voting, which will create natural break points in the ongoing calculations that are being done. This will allow us to scale voting with following to an arbitrarily large number of neurons. [Next](#2600)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This puts cast_vote_and_cascade_follow into governance, which will be necessary for the next step of making it async, and then finally adding break points to increase the voting capacity.
Prev | Next