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
114 type MaxHolds = MaxHolds;114 type MaxHolds = MaxHolds;
115 type MaxFreezes = MaxFreezes;115 type MaxFreezes = MaxFreezes;
116 type RuntimeHoldReason = RuntimeHoldReason;116 type RuntimeHoldReason = RuntimeHoldReason;
117 type RuntimeFreezeReason = RuntimeFreezeReason;
117}118}
118119
119pub struct Author4;120pub 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
--- 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! {