File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,8 @@ 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 < { 1 * 1024 * 1024 } > ;
69
+ type Migrations = ( ) ;
69
70
type Randomness = DummyRandomness < Self > ;
70
71
type RuntimeCall = RuntimeCall ;
71
72
type RuntimeEvent = RuntimeEvent ;
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ impl pallet_contracts::Config for Runtime {
64
64
type MaxCodeLen = ConstU32 < { 256 * 1024 } > ;
65
65
type MaxDebugBufferLen = ConstU32 < { 2 * 1024 * 1024 } > ;
66
66
type MaxDelegateDependencies = ConstU32 < 32 > ;
67
- type MaxTransientStorageSize = ConstU32 < { 1 * 1024 * 1024 } > ;
68
67
type MaxStorageKeyLen = ConstU32 < 128 > ;
69
- type Migrations = ( ) ;
68
+ type MaxTransientStorageSize = ConstU32 < { 1 * 1024 * 1024 } > ;
69
+ type Migrations = ( pallet_contracts:: migration:: v16:: Migration < Runtime > , ) ;
70
70
type Randomness = DummyRandomness < Self > ;
71
71
type RuntimeCall = RuntimeCall ;
72
72
type RuntimeEvent = RuntimeEvent ;
You can’t perform that action at this time.
0 commit comments