Skip to content

Commit

Permalink
Auto updated substrate references
Browse files Browse the repository at this point in the history
  • Loading branch information
Crust Update Bot committed Jan 28, 2025
1 parent d5557c6 commit 1cc1166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polkadot-sdk
Submodule polkadot-sdk updated 63 files
+2 −0 .github/workflows/check-runtime-migration.yml
+1 −0 .github/workflows/check-semver.yml
+19 −0 Cargo.lock
+2 −0 Cargo.toml
+6 −2 cumulus/pallets/parachain-system/src/lib.rs
+2 −1 cumulus/pallets/weight-reclaim/src/tests.rs
+8 −1 docs/sdk/src/reference_docs/chain_spec_runtime/src/runtime.rs
+8 −1 polkadot/runtime/westend/src/lib.rs
+33 −0 prdoc/pr_4722.prdoc
+10 −0 prdoc/pr_7338.prdoc
+7 −0 prdoc/pr_7359.prdoc
+8 −1 substrate/bin/node/runtime/src/lib.rs
+2 −0 substrate/client/network/src/behaviour.rs
+3 −0 substrate/client/network/src/lib.rs
+5 −6 substrate/client/network/src/litep2p/discovery.rs
+177 −40 substrate/client/network/src/peer_info.rs
+1 −0 substrate/client/network/src/service.rs
+3 −0 substrate/frame/examples/Cargo.toml
+3 −0 substrate/frame/examples/src/lib.rs
+61 −0 substrate/frame/examples/view-functions/Cargo.toml
+114 −0 substrate/frame/examples/view-functions/src/lib.rs
+188 −0 substrate/frame/examples/view-functions/src/tests.rs
+2 −1 substrate/frame/support/procedural/examples/proc_main/main.rs
+2 −1 substrate/frame/support/procedural/examples/proc_main/runtime.rs
+1 −10 substrate/frame/support/procedural/src/construct_runtime/expand/call.rs
+1 −9 substrate/frame/support/procedural/src/construct_runtime/expand/config.rs
+1 −9 substrate/frame/support/procedural/src/construct_runtime/expand/inherent.rs
+19 −9 substrate/frame/support/procedural/src/construct_runtime/expand/metadata.rs
+2 −0 substrate/frame/support/procedural/src/construct_runtime/expand/mod.rs
+2 −17 substrate/frame/support/procedural/src/construct_runtime/expand/origin.rs
+2 −17 substrate/frame/support/procedural/src/construct_runtime/expand/outer_enums.rs
+1 −9 substrate/frame/support/procedural/src/construct_runtime/expand/task.rs
+1 −9 substrate/frame/support/procedural/src/construct_runtime/expand/unsigned.rs
+78 −0 substrate/frame/support/procedural/src/construct_runtime/expand/view_function.rs
+4 −10 substrate/frame/support/procedural/src/construct_runtime/mod.rs
+13 −0 substrate/frame/support/procedural/src/construct_runtime/parse.rs
+2 −1 substrate/frame/support/procedural/src/lib.rs
+3 −0 substrate/frame/support/procedural/src/pallet/expand/mod.rs
+263 −0 substrate/frame/support/procedural/src/pallet/expand/view_functions.rs
+14 −0 substrate/frame/support/procedural/src/pallet/parse/mod.rs
+155 −0 substrate/frame/support/procedural/src/pallet/parse/view_functions.rs
+6 −0 substrate/frame/support/procedural/src/runtime/expand/mod.rs
+4 −0 substrate/frame/support/procedural/src/runtime/parse/runtime_types.rs
+1 −0 substrate/frame/support/src/lib.rs
+2 −1 substrate/frame/support/src/tests/mod.rs
+128 −0 substrate/frame/support/src/view_functions.rs
+34 −0 substrate/frame/support/test/tests/construct_runtime_ui/deprecated_where_block.stderr
+1 −1 substrate/frame/support/test/tests/derive_impl_ui/inject_runtime_type_invalid.stderr
+18 −1 substrate/frame/support/test/tests/pallet.rs
+2 −1 substrate/frame/support/test/tests/runtime.rs
+2 −1 substrate/frame/support/test/tests/runtime_legacy_ordering.rs
+1 −1 substrate/frame/support/test/tests/runtime_ui/invalid_runtime_type_derive.stderr
+1 −1 substrate/frame/support/test/tests/runtime_ui/pass/basic.rs
+1 −0 substrate/primitives/metadata-ir/src/lib.rs
+86 −1 substrate/primitives/metadata-ir/src/types.rs
+24 −16 substrate/primitives/metadata-ir/src/v15.rs
+2 −1 templates/minimal/runtime/src/lib.rs
+2 −1 templates/parachain/pallets/template/src/mock.rs
+6 −0 templates/parachain/runtime/src/apis.rs
+2 −1 templates/parachain/runtime/src/lib.rs
+2 −1 templates/solochain/pallets/template/src/mock.rs
+6 −0 templates/solochain/runtime/src/apis.rs
+2 −1 templates/solochain/runtime/src/lib.rs

0 comments on commit 1cc1166

Please sign in to comment.