|
@@ -0,0 +1,97 @@
|
|
|
|
+use frame_support::{impl_outer_origin, parameter_types};
|
|
|
|
+use frame_system;
|
|
|
|
+use sp_core::H256;
|
|
|
|
+use sp_runtime::{
|
|
|
|
+ testing::Header,
|
|
|
|
+ traits::{BlakeTwo256, IdentityLookup},
|
|
|
|
+ Perbill,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+impl_outer_origin! {
|
|
|
|
+ pub enum Origin for Test {}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+mod membership_mod {
|
|
|
|
+ pub use membership::Event;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+parameter_types! {
|
|
|
|
+ pub const BlockHashCount: u64 = 250;
|
|
|
|
+ pub const MaximumBlockWeight: u32 = 1024;
|
|
|
|
+ pub const MaximumBlockLength: u32 = 2 * 1024;
|
|
|
|
+ pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
|
|
+ pub const MinimumPeriod: u64 = 5;
|
|
|
|
+ pub const StakePoolId: [u8; 8] = *b"joystake";
|
|
|
|
+ pub const ExistentialDeposit: u32 = 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Workaround for https://github.com/rust-lang/rust/issues/26925 - remove when sorted.
|
|
|
|
+#[derive(Clone, PartialEq, Eq, Debug)]
|
|
|
|
+pub struct Test;
|
|
|
|
+
|
|
|
|
+impl frame_system::Trait for Test {
|
|
|
|
+ type BaseCallFilter = ();
|
|
|
|
+ type Origin = Origin;
|
|
|
|
+ type Call = ();
|
|
|
|
+ type Index = u64;
|
|
|
|
+ type BlockNumber = u64;
|
|
|
|
+ type Hash = H256;
|
|
|
|
+ type Hashing = BlakeTwo256;
|
|
|
|
+ type AccountId = u64;
|
|
|
|
+ type Lookup = IdentityLookup<Self::AccountId>;
|
|
|
|
+ type Header = Header;
|
|
|
|
+ type Event = ();
|
|
|
|
+ type BlockHashCount = BlockHashCount;
|
|
|
|
+ type MaximumBlockWeight = MaximumBlockWeight;
|
|
|
|
+ type DbWeight = ();
|
|
|
|
+ type BlockExecutionWeight = ();
|
|
|
|
+ type ExtrinsicBaseWeight = ();
|
|
|
|
+ type MaximumExtrinsicWeight = ();
|
|
|
|
+ type MaximumBlockLength = MaximumBlockLength;
|
|
|
|
+ type AvailableBlockRatio = AvailableBlockRatio;
|
|
|
|
+ type Version = ();
|
|
|
|
+ type PalletInfo = ();
|
|
|
|
+ type AccountData = pallet_balances::AccountData<u64>;
|
|
|
|
+ type OnNewAccount = ();
|
|
|
|
+ type OnKilledAccount = ();
|
|
|
|
+ type SystemWeightInfo = ();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl pallet_balances::Trait for Test {
|
|
|
|
+ type Balance = u64;
|
|
|
|
+ type DustRemoval = ();
|
|
|
|
+ type Event = ();
|
|
|
|
+ type ExistentialDeposit = ExistentialDeposit;
|
|
|
|
+ type AccountStore = System;
|
|
|
|
+ type WeightInfo = ();
|
|
|
|
+ type MaxLocks = ();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl membership::Trait for Test {
|
|
|
|
+ type Event = ();
|
|
|
|
+ type MemberId = u64;
|
|
|
|
+ type PaidTermId = u64;
|
|
|
|
+ type SubscriptionId = u64;
|
|
|
|
+ type ActorId = u64;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl common::currency::GovernanceCurrency for Test {
|
|
|
|
+ type Currency = Balances;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl pallet_timestamp::Trait for Test {
|
|
|
|
+ type Moment = u64;
|
|
|
|
+ type OnTimestampSet = ();
|
|
|
|
+ type MinimumPeriod = MinimumPeriod;
|
|
|
|
+ type WeightInfo = ();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+pub type Balances = pallet_balances::Module<Test>;
|
|
|
|
+pub type System = frame_system::Module<Test>;
|
|
|
|
+
|
|
|
|
+parameter_types! {
|
|
|
|
+ pub const RewardPeriod: u32 = 2;
|
|
|
|
+ pub const MaxWorkerNumberLimit: u32 = 3;
|
|
|
|
+ pub const MinUnstakingPeriodLimit: u64 = 3;
|
|
|
|
+ pub const LockId: [u8; 8] = [1; 8];
|
|
|
|
+}
|