Unverified Commit a61b592a authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Let `construct_runtime!` generate `ALL_MODULES` as nested tuples (#3732)

So, instead of:
`type ALL_MODULES = (Module1, Module2, Module3)`;
Generate it like this:
`type ALL_MODULES = ((Module1, Module2), Module3,);`

This should make `construct_runtime!` support an "unlimited" number of
modules.
parent 7fc0a91e
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment