From d6362e0c03490b8ccddfc0bea0c0c7657acd2316 Mon Sep 17 00:00:00 2001 From: toints Date: Mon, 3 Jun 2024 18:04:00 +0800 Subject: [PATCH] fixed: Fixed moveModule.execute 1010: Invalid Transaction: Transaction would exhaust the block limits --- pallets/move-vm/pallet/src/weights.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/move-vm/pallet/src/weights.rs b/pallets/move-vm/pallet/src/weights.rs index 7866dfa..47ca68b 100644 --- a/pallets/move-vm/pallet/src/weights.rs +++ b/pallets/move-vm/pallet/src/weights.rs @@ -55,7 +55,7 @@ impl crate::weight_info::WeightInfo for SubstrateWeight Weight::from_parts(35_000_000, 0) .saturating_add(Weight::from_parts(0, 17303)) // Standard Error: 192_486_421 - .saturating_add(Weight::from_parts(5_799_434_900, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(5_921_881, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1491).saturating_mul(n.into()))