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

Rewrite ConflictDAG #2606

Draft
wants to merge 141 commits into
base: develop
Choose a base branch
from
Draft

Rewrite ConflictDAG #2606

wants to merge 141 commits into from

Conversation

hmoog
Copy link
Contributor

@hmoog hmoog commented Mar 10, 2023

Description of change

This PR merges several different components into a singular streamlined framework for creating, tracking and managing conflicts (and votes on these conflicts).

In the current code base, we have a lot of different components that interact with Conflicts, and synchronizing these components in the context of multi-threading has proven to be a bit hard to achieve, simply because these components do not share access to a common mutex.

This PR aims to change this by merging all components that currently handle Conflicts into a singular streamlined API. This will not only allow us to de-duplicate a lot of code but we can also use the same caches and data structures for all involved parts.

Type of change

  • Enhancement (a non-breaking change which adds functionality)

Change checklist

  • My code follows the contribution guidelines for this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes

Base automatically changed from feat/modularize-ledger to develop March 10, 2023 08:06
@hmoog hmoog changed the title Merge ConflictDag with vote and weights tracking. Rewrite ConflictDAG Mar 16, 2023
@piotrm50 piotrm50 force-pushed the feat/rewrite-conflictdag-with-voting branch from 91372a8 to bbab455 Compare March 21, 2023 11:37
}

func (f *WeightedSetTestFramework) CreateID(alias string, optWeight ...int64) identity.ID {
validatorID, exists := f.identitiesByAlias[alias]

Check warning

Code scanning / CodeQL

Useless assignment to local variable Warning

This definition of validatorID is never used.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants