Please take into account a few tweaks needed on the weight files:
1) Manually fix XCM weights by
Replacing impl<T: frame_system::Config> xxx::yyy::WeightInfo<T> for WeightInfo<T> { with impl<T: frame_system::Config> WeightInfo<T> {
Marking all functions pub(crate)
2) A few files such as runtime_common_paras_registrar.rs, looks for crate polkadot_runtime_common and needed to be fixed adding the line use polkadot_runtime_common as runtime_common;
3) The mod.rs is not coming from the benchmark process, so this file has to be maintained separately even it's not changed very oftenly.
This PR pushes the new weights for Paseo 1.2.5.
@raynaudoe:
Please take into account a few tweaks needed on the weight files:
1) Manually fix XCM weights by
impl<T: frame_system::Config> xxx::yyy::WeightInfo<T> for WeightInfo<T> {
withimpl<T: frame_system::Config> WeightInfo<T> {
2) A few files such as
runtime_common_paras_registrar.rs
, looks for cratepolkadot_runtime_common
and needed to be fixed adding the lineuse polkadot_runtime_common as runtime_common;
3) The
mod.rs
is not coming from the benchmark process, so this file has to be maintained separately even it's not changed very oftenly.