Skip to content
  1. Apr 12, 2022
  2. Apr 11, 2022
  3. Apr 08, 2022
  4. Apr 07, 2022
  5. Mar 29, 2022
  6. Mar 28, 2022
  7. Mar 22, 2022
  8. Mar 21, 2022
  9. Mar 17, 2022
  10. Mar 16, 2022
  11. Mar 15, 2022
  12. Mar 14, 2022
  13. Mar 11, 2022
  14. Mar 10, 2022
  15. Mar 07, 2022
    • Doordashcon's avatar
      Add benchmarks for Xcmp QueueConfigData setters (#982) · 8d96b867
      Doordashcon authored
      
      
      * add benchmarks for xcmp queue config data setters
      
      * add new benchmarks
      
      * cargo fmt
      
      * added newline
      
      * Additional weights for dmp queue for westmint
      
      * include new weights
      
      * Adding WeightInfo trait and friends
      
      * WeightInfo should be on xcmp rather than dmp pallet
      
      * cargo fmt
      
      * update scripts
      
      * mock weightinfo
      
      * cargo fmt
      
      * canvas kusama is substrate weight
      
      * weights from bm2
      
      * expanding to other similar config functions
      
      * updated weights from bm2
      
      * Revert "updated weights from bm2"
      
      This reverts commit b1702780982c278b44f572c2089b1d7ddc564d76.
      
      * Consolidation to one benchmark
      
      * reran weights
      
      * Update pallets/xcmp-queue/src/lib.rs
      
      Co-authored-by: default avatarIgnacio Palacios <[email protected]>
      
      * integrating review feedback
      
      * rerun weights
      
      * Add DispatchClass::Operational
      
      Co-authored-by: default avatarSquirrel <[email protected]>
      Co-authored-by: default avatarIgnacio Palacios <[email protected]>
      8d96b867
  16. Mar 02, 2022
  17. Feb 25, 2022
  18. Feb 23, 2022
  19. Feb 22, 2022
  20. Feb 14, 2022
    • Keith Yeung's avatar
      Update rand to v0.8.5 (#987) · e7d354ca
      Keith Yeung authored
      * Update rand to v0.8.5
      
      * Enable std_rng feature on rand
      
      * Enable std_rng only when std is enabled
      
      * Revert "Enable std_rng only when std is enabled"
      
      This reverts commit 8fb3b72dbd6dc18bc19868b999b5b07cea4b7392.
      e7d354ca
  21. Feb 09, 2022
  22. Feb 07, 2022
  23. Feb 05, 2022
  24. Jan 31, 2022
  25. Jan 25, 2022
  26. Jan 21, 2022
    • Keith Yeung's avatar
      Companion for paritytech/polkadot#4712 (#901) · 8c28d4c6
      Keith Yeung authored
      * Rename ParentIsDefault to ParentIsAllZeroes
      
      * Fixes
      
      * Create ParentAccounts for respective networks
      
      * Fixes
      
      * Use b"Parent" as the basis for generating parent AccountId
      
      * Fixes
      
      * Use preset parent account ID
      
      * update lockfile for {"polkadot"}
      
      Co-authored-by: parity-processbot <>
      8c28d4c6
  27. Jan 20, 2022
  28. Jan 19, 2022
    • Squirrel's avatar
      Add collator selection tool tips (#900) · cc025953
      Squirrel authored
      
      
      * First doc lines should show as tool tips
      
      * Update pallets/collator-selection/src/lib.rs
      
      * Update pallets/collator-selection/src/lib.rs
      
      Co-authored-by: default avatarjoe petrowski <[email protected]>
      
      * Update pallets/collator-selection/src/lib.rs
      
      Co-authored-by: default avatarjoe petrowski <[email protected]>
      
      * Update pallets/collator-selection/src/lib.rs
      
      Co-authored-by: default avatarjoe petrowski <[email protected]>
      
      * moving comment onto storage
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      Co-authored-by: default avatarjoe petrowski <[email protected]>
      cc025953
    • Bastian Köcher's avatar
      xcmp-queue: Fix handling of encoded blobs (#889) · d988e383
      Bastian Köcher authored
      * xcmp-queue: Fix handling of encoded blobs
      
      With #701 we tried to fix some infinite loop related to encoded blobs, however that lead actually to
      not being able to process encoded blobs at all. The reason for this is that `decode_all` doesn't
      consume the given input. The point of this function is that it returns an error if the data couldn't
      be decoded or there is still data left. However, this means that the check
      `remaining_fragments.len() < last_remaining_fragments.len()` would always fail.
      
      We remove the while loop, because we decode the entire fragment anyway or it fails. Aka, we don't
      need to loop here. Next we remove the broken check and we directly reset the
      `remaining_fragments` (because `decode_all` doesn't consume anything).
      
      * Restore correct behavior
      
      We need to use a while loop, because there can be multiple `Vec<u8>`s. We also need to use `decode`,
      because `decode_all` would otherwise return an error if the input is not empty afterwards.
      
      * Remove unused import
      d988e383
  29. Jan 14, 2022
  30. Jan 12, 2022
  31. Jan 03, 2022
  32. Dec 31, 2021