Skip to content
  1. Jul 29, 2022
  2. Jul 28, 2022
  3. Jul 27, 2022
  4. Jul 26, 2022
  5. Jul 22, 2022
    • ordian's avatar
      malus: add `finality_delay` cli flag (#5770) · b1f8445d
      ordian authored
      * add malus_finality_delay flag
      
      * cargo update -p sp-io
      
      * no warnings when malus is disabled
      
      * subpar workaround for feature unification problem
      
      * remove malus_finality_delay from regular cli
      
      * document finality_delay param, rename cli arg
      b1f8445d
  6. Jul 20, 2022
  7. Jul 19, 2022
  8. Jul 12, 2022
    • Bernhard Schuster's avatar
      split NetworkBridge into two subsystems (#5616) · 3240cb5e
      Bernhard Schuster authored
      
      
      * foo
      
      * rolling session window
      
      * fixup
      
      * remove use statemetn
      
      * fmt
      
      * split NetworkBridge into two subsystems
      
      Pending cleanup
      
      * split
      
      * chore: reexport OrchestraError as OverseerError
      
      * chore: silence warnings
      
      * fixup tests
      
      * chore: add default timenout of 30s to subsystem test helper ctx handle
      
      * single item channel
      
      * fixins
      
      * fmt
      
      * cleanup
      
      * remove dead code
      
      * remove sync bounds again
      
      * wire up shared state
      
      * deal with some FIXMEs
      
      * use distinct tags
      
      Co-authored-by: default avatarAndrei Sandu <[email protected]>
      
      * use tag
      
      Co-authored-by: default avatarAndrei Sandu <[email protected]>
      
      * address naming
      
      tx and rx are common in networking and also have an implicit meaning regarding networking
      compared to incoming and outgoing which are already used with subsystems themselvesq
      
      * remove unused sync oracle
      
      * remove unneeded state
      
      * fix tests
      
      * chore: fmt
      
      * do not try to register twice
      
      * leak Metrics type
      
      Co-authored-by: default avatarAndrei Sandu <[email protected]>
      Co-authored-by: default avatarAndronik <[email protected]>
      3240cb5e
  9. Jul 09, 2022
    • Vsevolod Stakhov's avatar
      Implement prune only stagnant check mode (#5761) · c11c1f38
      Vsevolod Stakhov authored
      
      
      * Limit number of elements loaded from the stagnant key
      
      This will likely be required if we enable stagnant prunning as currently database has way
      too many entries to be prunned in a single iteration
      
      * Fmt run
      
      * Slightly improve logging
      
      * Some more debug nits
      
      * Fmt pass
      
      * Add stagnant prunning delay
      
      * Enable stagnant check worker
      
      * Implement stagnant pruning without stagnant checks
      
      * Update node/core/chain-selection/src/tree.rs
      
      Co-authored-by: default avatarAndronik <[email protected]>
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarAndronik <[email protected]>
      
      Co-authored-by: default avatarAndronik <[email protected]>
      c11c1f38
  10. Jul 06, 2022
    • Chevdor's avatar
      Version bump to v0.9.26/9260 (#5755) · 9fc4e16e
      Chevdor authored
      * Bump spec_version to 9260
      
      * Version bump to v0.9.26
      9fc4e16e
    • Svyatoslav Nikolsky's avatar
      Remove bridges subtree (#5752) · 3f29fd04
      Svyatoslav Nikolsky authored
      * remove bridges folder
      
      * remove BRIDGES.md
      
      * remove bridges mentions from top Cargo.toml
      
      * remove bridges from CODEOWNERS
      
      * remove bridges mentions from testing.md
      
      * remove bridge pallets from Rococo/Wococo runtime
      
      * also remove from node
      3f29fd04
  11. Jul 04, 2022
    • Vsevolod Stakhov's avatar
      Limit stagnant checks to a certain amount of entries (#5742) · 9dc99f02
      Vsevolod Stakhov authored
      * Limit number of elements loaded from the stagnant key
      
      This will likely be required if we enable stagnant prunning as currently database has way
      too many entries to be prunned in a single iteration
      
      * Fmt run
      
      * Slightly improve logging
      
      * Some more debug nits
      
      * Fmt pass
      9dc99f02
  12. Jun 29, 2022
  13. Jun 28, 2022
  14. Jun 27, 2022
  15. Jun 24, 2022
  16. Jun 23, 2022
  17. Jun 22, 2022
  18. Jun 21, 2022
    • Mara Broda's avatar
      bump versions to 0.9.25 (#5684) · 97f9b840
      Mara Broda authored
      * kusama: bump spec_version to 9250
      
      * polkadot: bump spec_version to 9250
      
      * rococo: bump spec_version to 9250
      
      * westend: bump spec_version to 9250
      
      * bump version to 0.9.25
      
      * bump transaction version (polkadot & kusama) (#5690)
      
      * kusama: bump transaction_version to 12
      
      * polkadot: bump transaction_version to 13
      97f9b840
  19. Jun 18, 2022
  20. Jun 17, 2022
  21. Jun 16, 2022
  22. Jun 14, 2022
  23. Jun 13, 2022
  24. Jun 07, 2022
  25. Jun 06, 2022
    • Bernhard Schuster's avatar
      [orchestra] extract graph logic and enhance with cycle detection + coloring (#5614) · 753d6f29
      Bernhard Schuster authored
      * extract graph
      
      * move into scope
      
      * remove dead code
      
      * add special nodes
      
      * avoid some clones
      
      * better doc
      
      * maybe better to use 
      
      * print all cycles, or an error
      
      Currently kosaraju_scc returns invalid cycles, which is yet to be investigated.
      
      * don't print tiny cycles, if there is nothing to unvisited anymore, there is a cycle
      
      * make print better
      
      * fmt ffs
      
      * correct: cycle -> scc
      
      A strongly connected cluster contains at least one cycl, but could include more.
      So this should be distringuished in the implementation to avoid some confusion.
      
      * fix loop exit condition
      
      * add a test for kosaraju behavior
      
      * unify on 'component'
      
      * disable graph by default
      
      https://github.com/paritytech/ci_cd/issues/433
      
      * chore: fmt
      
      * move graph only to graph_helpers
      753d6f29
  26. Jun 01, 2022
  27. May 31, 2022
  28. May 30, 2022
    • Robert Klotzner's avatar
      Request backed candidates unbounded. (#5610) · 72723c8a
      Robert Klotzner authored
      We are awaiting on the oneshot anyways, so we have back pressure. By
      using the unbounded channel make log messages like the following less
      likely (due to higher priority):
      
      	2022-05-30 13:46:38
      2022-05-30 11:46:38.565  WARN tokio-runtime-worker parachain::provisioner: failed to assemble or send inherent data err=CanceledBackedCandidates(Canceled)
      72723c8a
    • Gavin Wood's avatar
      Companion to Substrate #11490 (#5603) · 026848c9
      Gavin Wood authored
      * Fix warnings
      
      * Bump
      026848c9
  29. May 27, 2022