You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(or define some types for better readability outside of Config struct)
Pro:
If one defines the config by self, then one could take the Block type directly from Runtime, and does not need to define Header and Blocknumber.
Config{
.....
type Block = my_node_runtime::Runtime::Block;
...
}
Disadvantage:
The "inner" types can not be accessed anymore with simple Config::Header but a little more complex with somethign like Conifg::<Block as BlockTrait>::Header.
The runtime changed in substrate:
The text was updated successfully, but these errors were encountered: