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 Sep 12, 2024
1 parent 5e829f7 commit c447a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polkadot-sdk
Submodule polkadot-sdk updated 45 files
+40 −0 prdoc/pr_4851.prdoc
+2 −1 substrate/frame/staking/src/pallet/mod.rs
+1 −0 substrate/frame/support/procedural/examples/proc_main/inject_runtime_type.rs
+2 −0 substrate/frame/support/procedural/examples/proc_main/runtime.rs
+11 −6 substrate/frame/support/procedural/src/construct_runtime/expand/metadata.rs
+19 −16 substrate/frame/support/procedural/src/construct_runtime/parse.rs
+181 −0 substrate/frame/support/procedural/src/deprecation.rs
+3 −2 substrate/frame/support/procedural/src/lib.rs
+13 −1 substrate/frame/support/procedural/src/pallet/expand/call.rs
+32 −12 substrate/frame/support/procedural/src/pallet/expand/constants.rs
+24 −0 substrate/frame/support/procedural/src/pallet/expand/error.rs
+24 −1 substrate/frame/support/procedural/src/pallet/expand/event.rs
+15 −4 substrate/frame/support/procedural/src/pallet/expand/pallet_struct.rs
+18 −11 substrate/frame/support/procedural/src/pallet/expand/storage.rs
+25 −23 substrate/frame/support/procedural/src/pallet/parse/call.rs
+21 −19 substrate/frame/support/procedural/src/pallet/parse/config.rs
+3 −1 substrate/frame/support/procedural/src/pallet/parse/error.rs
+13 −2 substrate/frame/support/procedural/src/pallet/parse/event.rs
+11 −8 substrate/frame/support/procedural/src/pallet/parse/extra_constants.rs
+7 −8 substrate/frame/support/procedural/src/pallet/parse/mod.rs
+18 −15 substrate/frame/support/procedural/src/pallet/parse/storage.rs
+6 −6 substrate/frame/support/procedural/src/runtime/parse/mod.rs
+2 −1 substrate/frame/support/procedural/src/runtime/parse/pallet.rs
+42 −0 substrate/frame/support/src/lib.rs
+3 −3 substrate/frame/support/src/storage/generator/map.rs
+10 −3 substrate/frame/support/src/storage/types/counted_map.rs
+49 −8 substrate/frame/support/src/storage/types/counted_nmap.rs
+18 −3 substrate/frame/support/src/storage/types/double_map.rs
+18 −3 substrate/frame/support/src/storage/types/map.rs
+5 −1 substrate/frame/support/src/storage/types/mod.rs
+42 −7 substrate/frame/support/src/storage/types/nmap.rs
+18 −3 substrate/frame/support/src/storage/types/value.rs
+50 −2 substrate/frame/support/src/tests/mod.rs
+20 −0 substrate/frame/support/test/tests/construct_runtime_ui/undefined_event_part.stderr
+173 −0 substrate/frame/support/test/tests/enum_deprecation.rs
+3 −0 substrate/frame/support/test/tests/instance.rs
+61 −1 substrate/frame/support/test/tests/pallet.rs
+29 −2 substrate/frame/support/test/tests/runtime_metadata.rs
+4 −4 substrate/primitives/api/proc-macro/src/impl_runtime_apis.rs
+12 −2 substrate/primitives/api/proc-macro/src/runtime_metadata.rs
+120 −5 substrate/primitives/api/proc-macro/src/utils.rs
+5 −0 substrate/primitives/api/src/lib.rs
+29 −0 substrate/primitives/api/test/tests/ui/deprecation_info.rs
+25 −0 substrate/primitives/api/test/tests/ui/deprecation_info.stderr
+94 −24 substrate/primitives/metadata-ir/src/types.rs

0 comments on commit c447a59

Please sign in to comment.