File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ impl pallet_contracts::Config for Test {
101
101
type MaxDebugBufferLen = ConstU32 < { 2 * 1024 * 1024 } > ;
102
102
type MaxDelegateDependencies = MaxDelegateDependencies ;
103
103
type MaxStorageKeyLen = ConstU32 < 128 > ;
104
+ type MaxTransientStorageSize = ConstU32 < { 1024 * 1024 } > ;
104
105
type Migrations = ( ) ;
105
106
// crate::migration::codegen::BenchMigrations;
106
107
type Randomness = Test ;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ impl pallet_contracts::Config for Runtime {
65
65
type MaxDebugBufferLen = ConstU32 < { 2 * 1024 * 1024 } > ;
66
66
type MaxDelegateDependencies = ConstU32 < 32 > ;
67
67
type MaxStorageKeyLen = ConstU32 < 128 > ;
68
- type MaxTransientStorageSize = ConstU32 < { 1 * 1024 * 1024 } > ;
68
+ type MaxTransientStorageSize = ConstU32 < { 1024 * 1024 } > ;
69
69
type Migrations = ( ) ;
70
70
type Randomness = DummyRandomness < Self > ;
71
71
type RuntimeCall = RuntimeCall ;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ impl pallet_contracts::Config for Runtime {
65
65
type MaxDebugBufferLen = ConstU32 < { 2 * 1024 * 1024 } > ;
66
66
type MaxDelegateDependencies = ConstU32 < 32 > ;
67
67
type MaxStorageKeyLen = ConstU32 < 128 > ;
68
- type MaxTransientStorageSize = ConstU32 < { 1 * 1024 * 1024 } > ;
68
+ type MaxTransientStorageSize = ConstU32 < { 1024 * 1024 } > ;
69
69
type Migrations = ( pallet_contracts:: migration:: v16:: Migration < Runtime > , ) ;
70
70
type Randomness = DummyRandomness < Self > ;
71
71
type RuntimeCall = RuntimeCall ;
You can’t perform that action at this time.
0 commit comments