From 5a52b05ab3c61916020f99b8dc5f85b2bf7aa4c8 Mon Sep 17 00:00:00 2001 From: Daanvdplas Date: Thu, 19 Dec 2024 15:58:55 +0100 Subject: [PATCH] fix: mistake after rebase --- runtime/testnet/src/config/contracts.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/testnet/src/config/contracts.rs b/runtime/testnet/src/config/contracts.rs index 8de8494a..dc2a61c9 100644 --- a/runtime/testnet/src/config/contracts.rs +++ b/runtime/testnet/src/config/contracts.rs @@ -66,9 +66,8 @@ impl pallet_contracts::Config for Runtime { type MaxCodeLen = ConstU32<{ 256 * 1024 }>; type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>; type MaxDelegateDependencies = ConstU32<32>; - type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>; type MaxStorageKeyLen = ConstU32<128>; - type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>; + type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>; type Migrations = (pallet_contracts::migration::v16::Migration,); type Randomness = DummyRandomness; type RuntimeCall = RuntimeCall;