From 364a8d751d6b61121e80e17f26b449e2c151424c Mon Sep 17 00:00:00 2001 From: Guillaume Thiolliere Date: Mon, 14 Jun 2021 19:56:36 +0200 Subject: [PATCH] fix test (#3240) --- polkadot/runtime/common/src/impls.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/polkadot/runtime/common/src/impls.rs b/polkadot/runtime/common/src/impls.rs index 230a1cae86..e2504fd1f2 100644 --- a/polkadot/runtime/common/src/impls.rs +++ b/polkadot/runtime/common/src/impls.rs @@ -94,6 +94,7 @@ mod tests { parameter_types! { pub const BlockHashCount: u64 = 250; pub BlockWeights: limits::BlockWeights = limits::BlockWeights::builder() + .base_block(10) .for_class(DispatchClass::all(), |weight| { weight.base_extrinsic = 100; })