difftreelog
Merge commit '3d43cce592db583beac33fb177927a1b15d448de' into release-v927020
in: master
11 files changed
.docker/Dockerfile-try-runtimediffbeforeafterbothno changes
.docker/docker-compose-try-runtime.ymldiffbeforeafterbothno changes
.docker/docker-compose.try-runtime.j2diffbeforeafterbothno changes
.github/workflows/build-test-master.ymldiffbeforeafterboth10 - opened10 - opened11 - reopened11 - reopened12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request13 - ready_for_review131414 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab15 workflow_dispatch:16 workflow_dispatch:.github/workflows/codestyle.ymldiffbeforeafterboth8 - opened8 - opened9 - reopened9 - reopened10 - synchronize10 - synchronize11 - ready_for_review111212jobs:13jobs:13 rustfmt:14 rustfmt:.github/workflows/fork-update-withdata.ymldiffbeforeafterboth10 - opened10 - opened11 - reopened11 - reopened12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request13 - ready_for_review131414 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab15 workflow_dispatch:16 workflow_dispatch:.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth10 - opened10 - opened11 - reopened11 - reopened12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request13 - ready_for_review131414 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab15 workflow_dispatch:16 workflow_dispatch:.github/workflows/node_build_test.ymldiffbeforeafterboth10 - opened10 - opened11 - reopened11 - reopened12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request13 - ready_for_review131414 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab15 workflow_dispatch:16 workflow_dispatch:.github/workflows/tests_codestyle.ymldiffbeforeafterboth8 - opened8 - opened9 - reopened9 - reopened10 - synchronize10 - synchronize11 - ready_for_review1211jobs:13jobs:12 code_style:14 code_style:.github/workflows/try-runtime.ymldiffbeforeafterbothno changes
runtime/common/runtime_apis.rsdiffbeforeafterboth717717718 #[cfg(feature = "try-runtime")]718 #[cfg(feature = "try-runtime")]719 impl frame_try_runtime::TryRuntime<Block> for Runtime {719 impl frame_try_runtime::TryRuntime<Block> for Runtime {720 fn on_runtime_upgrade() -> (Weight, Weight) {720 fn on_runtime_upgrade() -> (frame_support::pallet_prelude::Weight, frame_support::pallet_prelude::Weight) {721 log::info!("try-runtime::on_runtime_upgrade unique-chain.");721 log::info!("try-runtime::on_runtime_upgrade unique-chain.");722 let weight = Executive::try_runtime_upgrade().unwrap();722 let weight = Executive::try_runtime_upgrade().unwrap();723 (weight, RuntimeBlockWeights::get().max_block)723 (weight, crate::config::substrate::RuntimeBlockWeights::get().max_block)724 }724 }725725726 fn execute_block_no_check(block: Block) -> Weight {726 fn execute_block_no_check(block: Block) -> frame_support::pallet_prelude::Weight {727 Executive::execute_block_no_check(block)727 Executive::execute_block_no_check(block)728 }728 }729 }729 }