Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
c83bca67
Commit
c83bca67
authored
4 years ago
by
Alexander Popiak
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
make AllModules public (#8017)
* make AllModules public * add doc comments for AllModules
parent
c42d756f
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
substrate/frame/support/procedural/src/construct_runtime/mod.rs
+5
-2
5 additions, 2 deletions
...ate/frame/support/procedural/src/construct_runtime/mod.rs
with
5 additions
and
2 deletions
substrate/frame/support/procedural/src/construct_runtime/mod.rs
+
5
−
2
View file @
c83bca67
...
...
@@ -470,8 +470,11 @@ fn decl_all_modules<'a>(
quote!
(
#
types
type
AllModules
=
(
#
all_modules
);
type
AllModulesWithSystem
=
(
#
all_modules_with_system
);
/// All pallets included in the runtime as a nested tuple of types.
/// Excludes the System pallet.
pub
type
AllModules
=
(
#
all_modules
);
/// All pallets included in the runtime as a nested tuple of types.
pub
type
AllModulesWithSystem
=
(
#
all_modules_with_system
);
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment