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
--- a/pallets/identity/src/tests.rs
+++ b/pallets/identity/src/tests.rs
@@ -101,6 +101,7 @@
 	type ReserveIdentifier = [u8; 8];
 	type WeightInfo = ();
 	type RuntimeHoldReason = RuntimeHoldReason;
+	type RuntimeFreezeReason = RuntimeFreezeReason;
 	type FreezeIdentifier = ();
 	type MaxHolds = ();
 	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
119 type FreezeIdentifier = [u8; 8];119 type FreezeIdentifier = [u8; 8];
120 type MaxHolds = MaxLocks;120 type MaxHolds = MaxLocks;
121 type RuntimeHoldReason = RuntimeHoldReason;121 type RuntimeHoldReason = RuntimeHoldReason;
122 type RuntimeFreezeReason = RuntimeFreezeReason;
122}123}
123124
124parameter_types! {125parameter_types! {