You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
513 B

  1. /*
  2. Package blockchain provides two implementations of the fast-sync protocol.
  3. - v0 was the very first implementation. it's battle tested, but does not have a
  4. lot of test coverage.
  5. - v2 is the newest implementation, with a focus on testability and readability.
  6. Check out ADR-40 for the formal model and requirements.
  7. # Termination criteria
  8. 1. the maximum peer height is reached
  9. 2. termination timeout is triggered, which is set if the peer set is empty or
  10. there are no pending requests.
  11. */
  12. package blockchain