From 701913b92b75c9fffa4969aeb0a16353fa4a533e Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Sun, 22 May 2022 00:29:26 +0200 Subject: [PATCH] mod(runtimes): change param ProofLimit 255-> 1024 --- runtime/common/src/pallets_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/common/src/pallets_config.rs b/runtime/common/src/pallets_config.rs index edf51eb61..b1284faec 100644 --- a/runtime/common/src/pallets_config.rs +++ b/runtime/common/src/pallets_config.rs @@ -262,7 +262,7 @@ macro_rules! pallets_config { impl pallet_atomic_swap::Config for Runtime { type Event = Event; type SwapAction = pallet_atomic_swap::BalanceSwapAction<AccountId, Balances>; - type ProofLimit = frame_support::traits::ConstU32<255>; + type ProofLimit = frame_support::traits::ConstU32<1_024>; } impl pallet_provide_randomness::Config for Runtime { -- GitLab