Skip to content
  1. Mar 03, 2023
  2. Mar 02, 2023
  3. Mar 01, 2023
  4. Feb 28, 2023
  5. Feb 27, 2023
  6. Feb 25, 2023
  7. Feb 24, 2023
  8. Feb 23, 2023
  9. Feb 22, 2023
  10. Feb 21, 2023
  11. Feb 20, 2023
  12. Feb 17, 2023
  13. Feb 16, 2023
    • Tsvetomir Dimitrov's avatar
      Fix a metric description (#6732) · 2853f349
      Tsvetomir Dimitrov authored
      2853f349
    • Bastian Köcher's avatar
      Change `MaxMemorySize` to `MaxMemoryPages` (#6728) · 83eb8453
      Bastian Köcher authored
      * Change `MaxMemorySize` to `MaxMemoryPages`
      
      We should set the max memory for the executor in pages (64KiB) and not in bytes.
      The wasm memory is always a multiple of a page and we should use the
      same terminology.
      
      * FMT
      
      * Fix warning
      83eb8453
    • Marcin S.'s avatar
      Use a `BoundedVec` in `ValidationResult` (#6603) · d5a79914
      Marcin S. authored
      * Use a `BoundedVec` in `ValidationResult`
      
      > Use a `BoundedVec` for `upward_messages` and `horizontal_messages` in order to
      > limit the number of individual messages/memory allocations right at decoding
      > time. The reason for this is that the `ValidationResult` may contain a code
      > upgrade (including a full PVF binary), so the total size limit can't be set
      > too low and this limit will still allow several millions of upward messages,
      > which will (due to the memory allocator overhead) already have a
      > non-negligible memory footprint in decoded form.
      
      * List all fields when hashing so we don't miss one
      
      * Define types for  `BoundedVec`s of messages
      
      * Fix test compile errors
      
      * Depend on `bounded-collections` 0.1.4 (fixes allocation issue)
      
      * Fix compilation issue
      
      * Derive `Hash` instead of manual `impl`
      
      * Avoid use of unwrap
      d5a79914
    • Adrian Catangiu's avatar
      Companion for substrate #12910: BEEFY metrics (#6706) · 686f6972
      Adrian Catangiu authored
      * service: provide prometheus registry for beefy metrics
      
      * update lockfile for {"substrate"}
      
      ---------
      
      Co-authored-by: parity-processbot <>
      686f6972