1. Feb 11, 2022
  2. Feb 10, 2022
  3. Feb 09, 2022
  4. Feb 08, 2022
  5. Feb 07, 2022
  6. Feb 05, 2022
  7. Feb 04, 2022
  8. Feb 03, 2022
  9. Feb 02, 2022
  10. Feb 01, 2022
  11. Jan 31, 2022
  12. Jan 26, 2022
  13. Jan 25, 2022
  14. Jan 22, 2022
  15. Jan 21, 2022
  16. Jan 20, 2022
  17. 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
    • Squirrel's avatar
      Update Statemint prefix (#916) · 93fcd0ad
      Squirrel authored
      
      
      Co-authored-by: default avatarRicardo Rius <[email protected]>
      93fcd0ad
    • 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