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

Problem: when adding an element to the queue, which was already prese… #79

Merged
merged 5 commits into from Oct 25, 2020

Commits on Oct 19, 2020

  1. Problem: when adding an element to the queue, which was already prese…

    …nt, the queue would dedup the element itself (as it is stored in a map). However, it would duplicate the children reference for the parent (as this is a list).
    
    Fix:
    • check if element to be added is already present in the queue and NoOp in this case.
    • extended goDoc on return value
    
    updated mempool Queue method Attach:
    • added consistency check for partially overlapping queues
    • extended godoc
    • included unit test
    Alexander Hentschel committed Oct 19, 2020
    Configuration menu
    Copy the full SHA
    6d87af3 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

  1. removed unused code

    Alexander Hentschel committed Oct 20, 2020
    Configuration menu
    Copy the full SHA
    c1a9276 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2020

  1. Merge branch 'master' into alex/mempool-queue-revisions

    Alexander Hentschel committed Oct 21, 2020
    Configuration menu
    Copy the full SHA
    501b136 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2020

  1. Configuration menu
    Copy the full SHA
    6431b74 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9bf87c2 View commit details
    Browse the repository at this point in the history