Browse Source

Merge pull request #397 from mnaamani/increase-max-block-weight

Increase the MaximumBlockWeight
Bedeho Mender 4 years ago
parent
commit
f9daebe9a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      runtime/src/lib.rs

+ 1 - 1
runtime/src/lib.rs

@@ -176,7 +176,7 @@ pub fn native_version() -> NativeVersion {
 
 parameter_types! {
     pub const BlockHashCount: BlockNumber = 250;
-    pub const MaximumBlockWeight: Weight = 1_000_000;
+    pub const MaximumBlockWeight: Weight = 1_000_000_000;
     pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);
     pub const MaximumBlockLength: u32 = 5 * 1024 * 1024;
     pub const Version: RuntimeVersion = VERSION;