diff --git a/pallets/regions/src/mock.rs b/pallets/regions/src/mock.rs index a0f81fc..14156d4 100644 --- a/pallets/regions/src/mock.rs +++ b/pallets/regions/src/mock.rs @@ -85,6 +85,7 @@ impl pallet_balances::Config for Test { parameter_types! { pub const CoretimeChain: StateMachine = StateMachine::Kusama(1005); // coretime-kusama + pub const RegionsUnsignedPriority: TransactionPriority = TransactionPriority::max_value(); } pub struct MockStateMachineHeightProvider; @@ -101,6 +102,7 @@ impl crate::Config for Test { type IsmpDispatcher = MockDispatcher; type StateMachineHeightProvider = MockStateMachineHeightProvider; type Timeout = ConstU64<1000>; + type UnsignedPriority = RegionsUnsignedPriority; type WeightInfo = (); }