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
Currently, in all our of runtimes, but most importantly in the mainnet runtime we use the default configuration for many pallets #[derive_impl(frame_system::config_preludes::ParaChainDefaultConfig)]. This results in using the default WeightInfo. Furthermore, define_benchmarks excludes most pallets.
In the 2412 release, there is also a new extension benchmark for frame-system. This needs to be added as well (and will be exposed when the default configuration is removed):
Currently, in all our of runtimes, but most importantly in the mainnet runtime we use the default configuration for many pallets
#[derive_impl(frame_system::config_preludes::ParaChainDefaultConfig)]
. This results in using the defaultWeightInfo
. Furthermore,define_benchmarks
excludes most pallets.In the 2412 release, there is also a new extension benchmark for frame-system. This needs to be added as well (and will be exposed when the default configuration is removed):
define_benchmarks
TransactionExtension
as a replacement forSignedExtension
paritytech/polkadot-sdk#3685Weigher
usingWeightInfoBounds
instead of the current configuration usingFixedWeightBounds
.The text was updated successfully, but these errors were encountered: