Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
37d241f
refactor(mainnet): add frame_system to system
al3mart Jan 21, 2025
126ac05
test(mainnet): add pallet_system test
al3mart Jan 21, 2025
993befd
fix(mainnet): rebase fixes
al3mart Jan 27, 2025
80b5ae4
fix(system): bring missing types in scope
al3mart Jan 30, 2025
bf4a2c4
refactor(system): add cumulus_parachain_system to system config module
al3mart Jan 30, 2025
f320033
test(system): add cumulus_parachain_system tests
al3mart Jan 30, 2025
afefb51
refactor(system): add parachain_info into system config module
al3mart Jan 30, 2025
5cded3f
refactor(system): add pallet_timestamp into system config module
al3mart Jan 30, 2025
ed805d0
style(system): add ConsensusHook comment
al3mart Jan 31, 2025
5be163f
refactor(system): separate tests by module
al3mart Feb 3, 2025
3a48998
docs(system): document public config modules
al3mart Feb 3, 2025
f95c977
fix(system): allow unused_imports to remove Executive warning
al3mart Feb 3, 2025
ceaa7b6
refactor(system): reintroduce FilteredCalls
al3mart Feb 4, 2025
f0bf920
style(system): get rid of test prefixes
al3mart Feb 4, 2025
8cc1611
style(system): relocate max_block_weigth comment
al3mart Feb 4, 2025
b02ba50
test(system): check for Hash type config
al3mart Feb 4, 2025
54cc880
docs(system): amend outdated comments
al3mart Feb 4, 2025
ca8cb6f
Update runtime/mainnet/src/config/mod.rs
al3mart Feb 4, 2025
6f411b9
Update runtime/mainnet/src/config/mod.rs
al3mart Feb 4, 2025
59c4330
Update runtime/mainnet/src/config/mod.rs
al3mart Feb 4, 2025
6eb1ecc
Update runtime/mainnet/src/config/mod.rs
al3mart Feb 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ pub fn run() -> Result<()> {
#[cfg(not(feature = "ismp"))]
{
sp_core::crypto::set_default_ss58_version(
pop_runtime_mainnet::SS58Prefix::get().into(),
pop_runtime_mainnet::config::system::SS58Prefix::get().into(),
);
crate::service::start_parachain_node::<pop_runtime_mainnet::RuntimeApi>(
config,
Expand Down
7 changes: 6 additions & 1 deletion runtime/mainnet/src/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
/// Governance.
pub mod governance;
mod proxy;
/// Proxy.
pub(crate) mod proxy;
/// System functionality.
pub mod system;
mod utility;
/// XCM.
pub mod xcm;
Loading
Loading