git.delta.rocks / unique-network / refs/commits / 6aa08763e9bf

difftreelog

Merge commit '3d43cce592db583beac33fb177927a1b15d448de' into release-v927020

Yaroslav Bolyukin2022-08-16parents: #4cfc421 #3d43cce.patch.diff
in: master

11 files changed

added.docker/Dockerfile-try-runtimediffbeforeafterboth

no changes

added.docker/docker-compose-try-runtime.ymldiffbeforeafterboth

no changes

added.docker/docker-compose.try-runtime.j2diffbeforeafterboth

no changes

modified.github/workflows/build-test-master.ymldiffbeforeafterboth
10 - opened10 - opened
11 - reopened11 - reopened
12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request
13 - ready_for_review
1314
14 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab
15 workflow_dispatch:16 workflow_dispatch:
modified.github/workflows/codestyle.ymldiffbeforeafterboth
8 - opened8 - opened
9 - reopened9 - reopened
10 - synchronize10 - synchronize
11 - ready_for_review
1112
12jobs:13jobs:
13 rustfmt:14 rustfmt:
modified.github/workflows/fork-update-withdata.ymldiffbeforeafterboth
10 - opened10 - opened
11 - reopened11 - reopened
12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request
13 - ready_for_review
1314
14 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab
15 workflow_dispatch:16 workflow_dispatch:
modified.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth
10 - opened10 - opened
11 - reopened11 - reopened
12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request
13 - ready_for_review
1314
14 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab
15 workflow_dispatch:16 workflow_dispatch:
modified.github/workflows/node_build_test.ymldiffbeforeafterboth
10 - opened10 - opened
11 - reopened11 - reopened
12 - synchronize #commit(s) pushed to the pull request12 - synchronize #commit(s) pushed to the pull request
13 - ready_for_review
1314
14 # Allows you to run this workflow manually from the Actions tab15 # Allows you to run this workflow manually from the Actions tab
15 workflow_dispatch:16 workflow_dispatch:
modified.github/workflows/tests_codestyle.ymldiffbeforeafterboth
8 - opened8 - opened
9 - reopened9 - reopened
10 - synchronize10 - synchronize
11 - ready_for_review
12
11jobs:13jobs:
12 code_style:14 code_style:
added.github/workflows/try-runtime.ymldiffbeforeafterboth

no changes

modifiedruntime/common/runtime_apis.rsdiffbeforeafterboth
717717
718 #[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 }
725725
726 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 }