Skip to content
  1. Jul 07, 2020
  2. Jul 06, 2020
  3. Jul 04, 2020
    • Shawn Tabrizi's avatar
      3c681586
    • Bastian Köcher's avatar
      Make a collator send a collation as backup as well (#1353) · 21f31f78
      Bastian Köcher authored
      Currently a collator will only send a collation to validators it is a
      primary for. While testing this could lead to the situation that the
      same collator was registered as prime for all Parachain validators but
      failed for other reasons to generate a PoVBlock. However no other
      collator was sending a collation, which stopped the Parachain until the
      faulty collator was stopped.
      
      This pr solves this problem by making sure that every collator sends a
      collation to one of his validators he is connected to, but registered as backup.
      21f31f78
  4. Jul 03, 2020
  5. Jul 02, 2020
  6. Jul 01, 2020
  7. Jun 30, 2020
  8. Jun 27, 2020
  9. Jun 26, 2020
  10. Jun 25, 2020
  11. Jun 24, 2020
  12. Jun 23, 2020
    • Bastian Köcher's avatar
      Make `produce_candidate` return an `Option` (#1309) · 39a36052
      Bastian Köcher authored
      * Make `produce_candidate` return an `Option`
      
      Instead of `produce_candidate` returning a `Result`, it should return an
      `Option`. The only supported error was `InvalidHead` anyway and Cumulus
      will take care to print appropriate information on what failed and
      Polkadot can just ignore it.
      
      * Fix warning
      39a36052