1. May 18, 2022
  2. May 17, 2022
  3. May 16, 2022
  4. May 15, 2022
  5. May 14, 2022
    • Nazar Mokrynskyi's avatar
      Network sync refactoring (part 3) (#11347) · 8a458708
      Nazar Mokrynskyi authored
      * Move `light.v1.proto` schema into new crate `sc-network-light`
      
      * Move `sc_network::light_client_requests` and submodule to `sc_network_light::light_client_requests`
      
      * Fix apparently outdated reference in documentation and visibility modifier
      
      * Fix rustdoc check
      
      * Update lock file
      8a458708
  6. May 13, 2022
  7. May 12, 2022
  8. May 11, 2022
  9. May 10, 2022
    • Kian Paimani's avatar
      fix a few more things with nomination pools (#11373) · ce212479
      Kian Paimani authored
      
      
      * fix a few more things with nomination pools
      
      * add bench
      
      * use weight fn
      
      * cargo run --quiet --profile=production  --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_nomination_pools --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/nomination-pools/src/weights.rs --template=./.maintain/frame-weight-template.hbs
      
      * allow real root to also set roles
      
      * Update frame/nomination-pools/src/lib.rs
      
      Co-authored-by: default avatarOliver Tale-Yazdi <[email protected]>
      
      * Update frame/nomination-pools/src/lib.rs
      
      Co-authored-by: default avatarOliver Tale-Yazdi <[email protected]>
      
      * move out of the closure
      
      * fix a few more things
      
      Co-authored-by: default avatarParity Bot <[email protected]>
      Co-authored-by: default avatarOliver Tale-Yazdi <[email protected]>
      ce212479
    • Niklas Adolfsson's avatar
      update Cargo.lock (#11384) · 6e0ba2da
      Niklas Adolfsson authored
      6e0ba2da
    • Joshy Orndorff's avatar
      sc-consensus-slots: rename `client` -> `select_chain` (#11375) · f6b982d7
      Joshy Orndorff authored
      * rename `client` -> `select_chain`
      
      * missed one
      
      * `cargo fmt` (only the file I touched)
      
      * Missed another one
      
      * Revert "`cargo fmt` (only the file I touched)"
      
      This reverts commit 96a0c6cd131cdc08013f7ddb9e7bf2af34ae3ee3.
      
      * `cargo fmt` (again) (only the LINES I touched)
      f6b982d7
    • Davide Galassi's avatar
      Refactory of Fork-Tree data structure (#11228) · 12d57414
      Davide Galassi authored
      
      
      * Iterative version of some fork-tree methods
      
      * Prune doesn't require its generic args to be 'clone'
      
      * Fork-tree import and drain-filter iterative implementations
      
      * Fork-tree map iterative implementation
      
      * Optimization of some operations, e.g. rebalance only when required
      
      * Destructuring assignments not supported yet by stable rustc 1.57
      
      * Safe implementation of 'map' and 'drain_filter' methods
      
      * Remove dummy comment
      
      * Trigger CI pipeline
      
      * Test map for multi-root fork-tree and refactory of `find_node_index_where`
      
      * Fix find node index with predicate
      
      * Nits
      
      * Tree traversal algorithm is not specified
      
      * Move unspecified tree traversal warning to 'map'
      
      * Immutable 'drain_filter' predicate
      
      * Apply suggestions from code review
      
      * Remove double mapping
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      12d57414