1. Sep 15, 2021
    • Tomasz Drwięga's avatar
      Emit log on Runtime Code change. (#9580) · 08c2d0d4
      Tomasz Drwięga authored
      * Emit digest item on Runtime Code changes.
      
      * Add tests.
      
      * cargo +nightly fmt --all
      
      * Rename.
      
      * Add comment.
      
      * Move generic parameter to the trait.
      
      * cargo +nightly fmt --all
      
      * Elaborate in doc.
      
      * Revert to RuntimeUpdated name
      
      * cargo +nightly fmt --all
      
      * Rename to RuntimeEnvironmentUpdated
      08c2d0d4
  2. Sep 14, 2021
  3. Sep 13, 2021
  4. Sep 12, 2021
    • Kian Paimani's avatar
      Recursive election provider as fallback (#9648) · 056fd9b8
      Kian Paimani authored
      
      
      * Recursive election provider as fallback
      
      * minor fix
      
      * Fix integrity tests
      
      * Update frame/election-provider-multi-phase/src/lib.rs
      
      Co-authored-by: default avatarZeke Mostov <[email protected]>
      
      * Fix everything
      
      * fmt again
      
      * Fix test
      
      * Fix state machine warning
      
      * Fix build
      
      Co-authored-by: default avatarZeke Mostov <[email protected]>
      056fd9b8
    • Bastian Köcher's avatar
      Use tokio runtime handle instead of `TaskExecutor` abstraction (#9737) · c09d52ea
      Bastian Köcher authored
      * Use tokio runtime handle instead of TaskExecutor abstraction
      
      Before this pr we had the `TaskExecutor` abstraction which theoretically
      allowed that any futures executor could have been used. However, this
      was never tested and is currently not really required. Anyone running a
      node currently only used tokio and nothing else (because this was hard
      coded in CLI). So, this pr removes the `TaskExecutor` abstraction and
      relies directly on the tokio runtime handle.
      
      Besides this changes, this pr also makes sure that the http and ws rpc
      server use the same tokio runtime. This fixes a panic that occurred when
      you drop the rpc servers inside an async function (tokio doesn't like
      that a tokio runtime is dropped in the async context of another tokio
      runtime).
      
      As we don't use any custom runtime in the http rpc server anymore, this
      pr also removes the `rpc-http-threads` cli argument. If external parties
      complain that there aren't enough threads for the rpc server, we could
      bring support for increasing the thread count of the tokio runtime.
      
      * FMT
      
      * Fix try runtime
      
      * Fix integration tests and some other optimizations
      
      * Remove warnings
      c09d52ea
  5. Sep 10, 2021
  6. Sep 09, 2021
  7. Sep 08, 2021
  8. Sep 07, 2021