Upgrade generic-template to polkadot-stable2503 (#414)

* init

* upgrade tanssi deps used in generic template moonkit and dancekit

* upgrade orml to 2503

* upgrade moonbeam to 2503

* upgrade abstractions to 2503

* DecodeWithMemTracking to fix 15 of 44 errors for runtime compilation

* toml sort

* use str array instead of raw strings for gov track names

* fix weight info implementations abstractions require more updates

* more fixes still wip

* fix imports

* generic runtime compiles

* update node network starter to match latest changes in polkadot sdk

* toml sort generic cargo toml

* update generic xcm mocks

* update fuzzer

* fix import still debugging async backing compilation errors

* fix clippy errors by using tx extensions to replace signed extra

* toml sort

* accept clippy suggestion
This commit is contained in:
Amar Singh
2025-06-27 10:08:20 -04:00
committed by GitHub
parent 987536368c
commit 93d31c3ed5
23 changed files with 3474 additions and 3180 deletions
+3 -3
View File
@@ -201,7 +201,7 @@ async fn start_node_impl(
let transaction_pool = params.transaction_pool.clone();
let import_queue_service = params.import_queue.service();
let (network, system_rpc_tx, tx_handler_controller, start_network, sync_service) =
let (network, system_rpc_tx, tx_handler_controller, sync_service) =
build_network(BuildNetworkParams {
parachain_config: &parachain_config,
net_config,
@@ -343,8 +343,6 @@ async fn start_node_impl(
)?;
}
start_network.start_network();
Ok((task_manager, client))
}
@@ -474,6 +472,8 @@ fn start_consensus(
collation_request_receiver: None,
#[cfg(feature = "async-backing")]
reinitialize: false,
#[cfg(feature = "async-backing")]
max_pov_percentage: None,
};
#[cfg(not(feature = "async-backing"))]