Skip to content
Snippets Groups Projects
  1. Sep 14, 2020
  2. Sep 13, 2020
  3. Sep 12, 2020
    • Bastian Köcher's avatar
      Fix `storage::read` (#7084) · 9a69be05
      Bastian Köcher authored
      * Fix `storage::read`
      
      It should return the length of the storage item after the given offset.
      Before it returned always the length of the full storage item.
      
      * Fix tests
      9a69be05
  4. Sep 11, 2020
  5. Sep 10, 2020
  6. Sep 09, 2020
  7. Sep 08, 2020
  8. Sep 07, 2020
  9. Sep 06, 2020
    • Roman Borschel's avatar
      Refactor & detach network metrics. (#6986) · ec478772
      Roman Borschel authored
      * Refactor sc-network/service metrics.
      
        1. Aggregate sc-network metrics into a submodule, introducing
        two more sourced metrics to avoid duplicate atomics.
      
        2. Decouple periodic sc-service network metrics from other
        metrics, so that they can be updated independently.
      
      * Update client/service/src/metrics.rs
      
      * Update client/service/src/metrics.rs
      ec478772
  10. Sep 04, 2020
    • Kian Paimani's avatar
      Fix compact npos solution edge count calculation (#7021) · e6ce3e7a
      Kian Paimani authored
      This edge count is used for weighing, and it is somewhat trivial to review and verify that the current implementation was ignoring `votes16` field of the struct. As reminder, the struct is like this: 
      ```rust
      
      struct Compact {
        votes1: ... ,
        votes2: ..., 
        ...,
        votes16: ...,
      }
      ```
      
      I already will fix this in https://github.com/paritytech/substrate/pull/7007, but since it might take a while, this one can go in asap and make it to the very next runtime.
      e6ce3e7a