git.delta.rocks / unique-network / refs/commits / db78a53b1861

difftreelog

test fix unit

Yaroslav Bolyukin2023-11-24parent: #3e2337f.patch.diff
in: master

4 files changed

modifiedpallets/collator-selection/src/mock.rsdiffbeforeafterboth
--- a/pallets/collator-selection/src/mock.rs
+++ b/pallets/collator-selection/src/mock.rs
@@ -114,6 +114,7 @@
 	type MaxHolds = MaxHolds;
 	type MaxFreezes = MaxFreezes;
 	type RuntimeHoldReason = RuntimeHoldReason;
+	type RuntimeFreezeReason = RuntimeFreezeReason;
 }
 
 pub struct Author4;
modifiedpallets/identity/src/tests.rsdiffbeforeafterboth
101 type ReserveIdentifier = [u8; 8];101 type ReserveIdentifier = [u8; 8];
102 type WeightInfo = ();102 type WeightInfo = ();
103 type RuntimeHoldReason = RuntimeHoldReason;103 type RuntimeHoldReason = RuntimeHoldReason;
104 type RuntimeFreezeReason = RuntimeFreezeReason;
104 type FreezeIdentifier = ();105 type FreezeIdentifier = ();
105 type MaxHolds = ();106 type MaxHolds = ();
106 type MaxFreezes = ();107 type MaxFreezes = ();
modifiedpallets/inflation/src/tests.rsdiffbeforeafterboth
--- a/pallets/inflation/src/tests.rs
+++ b/pallets/inflation/src/tests.rs
@@ -61,6 +61,7 @@
 	type MaxHolds = ();
 	type MaxFreezes = ();
 	type RuntimeHoldReason = RuntimeHoldReason;
+	type RuntimeFreezeReason = RuntimeFreezeReason;
 }
 
 frame_support::construct_runtime!(
modifiedruntime/tests/src/lib.rsdiffbeforeafterboth
--- a/runtime/tests/src/lib.rs
+++ b/runtime/tests/src/lib.rs
@@ -119,6 +119,7 @@
 	type FreezeIdentifier = [u8; 8];
 	type MaxHolds = MaxLocks;
 	type RuntimeHoldReason = RuntimeHoldReason;
+	type RuntimeFreezeReason = RuntimeFreezeReason;
 }
 
 parameter_types! {