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

Prevent getting stuck in block processor flush #2675

Commits on Mar 22, 2020

  1. Prevent getting stuck in block processor flush

    I noticed `node.block_processor_reject_state` was often freezing on windows, this is due to a the verification callback being called and notifying the block processor before transitioning into an inactive state, so the `block_processor::flush` ends up waiting for the condition forever. I've added a second callback to solve this.
    guilhermelawless committed Mar 22, 2020
    Configuration menu
    Copy the full SHA
    6b122a0 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2020

  1. Configuration menu
    Copy the full SHA
    cd78151 View commit details
    Browse the repository at this point in the history
  2. Change the test to launch async and wait for future, to prevent freez…

    …ing in the future but still fail
    guilhermelawless committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    f4f71d3 View commit details
    Browse the repository at this point in the history
  3. Comment formatting

    guilhermelawless committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    b772bb7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    51973ef View commit details
    Browse the repository at this point in the history