NOTE: running the overhead benchmark at the moment is not possible due to technical limitations after the runtimes decoupling from the polkadot-sdk node. For now we are increasing the block_weights.rs + extrinsics_weights.rs to the exact double:
parameter_types! {
/// Importing a block with 0 Extrinsics.
pub const BlockExecutionWeight: Weight =
Weight::from_parts(constants::WEIGHT_REF_TIME_PER_NANOS.saturating_mul(10_000_000), 0);
}
This PR updates the weights for the AssetHub according to the Paseo reference hardware documented:
https://github.com/paseo-network/paseo-action-submission/blob/main/pas/PAS-7-Hardware_specs.md
NOTE: running the overhead benchmark at the moment is not possible due to technical limitations after the runtimes decoupling from the polkadot-sdk node. For now we are increasing the block_weights.rs + extrinsics_weights.rs to the exact double: