git.delta.rocks / unique-network / refs/commits / 4cda73caca2b

difftreelog

fix test configs

Daniel Shiposha2024-05-28parent: #7ca598f.patch.diff
in: master

1 file changed

modifiedruntime/tests/src/lib.rsdiffbeforeafterboth
99 type OnSetCode = ();99 type OnSetCode = ();
100 type MaxConsumers = ConstU32<16>;100 type MaxConsumers = ConstU32<16>;
101
102 type RuntimeTask = ();
103
104 type SingleBlockMigrations = ();
105 type MultiBlockMigrator = ();
106 type PreInherents = ();
107 type PostInherents = ();
108 type PostTransactions = ();
101}109}
102110
103parameter_types! {111parameter_types! {
117 type ReserveIdentifier = [u8; 8];125 type ReserveIdentifier = [u8; 8];
118 type MaxFreezes = MaxLocks;126 type MaxFreezes = MaxLocks;
119 type FreezeIdentifier = [u8; 8];127 type FreezeIdentifier = [u8; 8];
120 type MaxHolds = MaxLocks;
121 type RuntimeHoldReason = RuntimeHoldReason;128 type RuntimeHoldReason = RuntimeHoldReason;
122 type RuntimeFreezeReason = RuntimeFreezeReason;129 type RuntimeFreezeReason = RuntimeFreezeReason;
123}130}
237 type BlockHashMapping = SubstrateBlockHashMapping<Self>;244 type BlockHashMapping = SubstrateBlockHashMapping<Self>;
238 type Timestamp = Timestamp;245 type Timestamp = Timestamp;
239 type GasLimitPovSizeRatio = ConstU64<0>;246 type GasLimitPovSizeRatio = ConstU64<0>;
247 type SuicideQuickClearLimit = ConstU32<0>;
240}248}
241impl pallet_evm_coder_substrate::Config for Test {}249impl pallet_evm_coder_substrate::Config for Test {}
242250