Skip to content
  1. Aug 31, 2023
  2. Aug 30, 2023
  3. Aug 29, 2023
  4. Aug 28, 2023
  5. Aug 25, 2023
  6. Aug 24, 2023
  7. Aug 23, 2023
    • juangirini's avatar
      Companion: restructure macro related exports (#7626) · c4aa18c4
      juangirini authored
      * move RuntimeDebug out of frame_support
      
      * move RuntimeDebug out of frame_support
      
      * fix xcm export
      
      * ".git/.scripts/commands/fmt/fmt.sh"
      
      * fix xcm intefration tests
      
      * fix cargo lock for xcm intefration tests
      
      * wip
      
      * restructure benchmarking macro related exports
      
      * update cargo lock
      
      ---------
      
      Co-authored-by: parity-processbot <>
      c4aa18c4
  8. Aug 22, 2023
  9. Aug 21, 2023
    • Marcin S.'s avatar
      PVF worker: random fixes (#7649) · 515ec1a9
      Marcin S. authored
      * PVF worker: random fixes
      
      - Fixes possible panic due to non-UTF-8 env vars
        (https://github.com/paritytech/polkadot/pull/7330#discussion_r1300101716)
      - Very small refactor of some duplicated code
      
      * Don't need `to_str()` for comparison between OsString and str
      
      * Check edge cases that can cause env::remove_var to panic
      
      In case of a key or value that would cause env::remove_var to panic, we first
      log a warning and then proceed to attempt to remove the env var.
      
      * Make warning message clearer for end users
      
      * Backslash was unescaped, but can just remove it from error messages
      515ec1a9