4666047395
Updated 4763 files with dual copyright: - Parity Technologies (UK) Ltd. - Dijital Kurdistan Tech Institute
79 lines
2.4 KiB
Rust
79 lines
2.4 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd. and Dijital Kurdistan Tech Institute
|
|
// This file is part of Pezcumulus.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use crate as pezpallet_ah_ops;
|
|
use crate::*;
|
|
use pezframe_support::derive_impl;
|
|
use pezsp_core::H256;
|
|
use pezsp_runtime::traits::{BlakeTwo256, IdentityLookup};
|
|
|
|
type Block = pezframe_system::mocking::MockBlock<Runtime>;
|
|
|
|
// For testing the pezpallet, we construct a mock runtime.
|
|
pezframe_support::construct_runtime!(
|
|
pub enum Runtime {
|
|
System: pezframe_system,
|
|
Balances: pezpallet_balances,
|
|
AhOps: pezpallet_ah_ops,
|
|
Timestamp: pezpallet_timestamp,
|
|
}
|
|
);
|
|
|
|
#[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)]
|
|
impl pezframe_system::Config for Runtime {
|
|
type BaseCallFilter = pezframe_support::traits::Everything;
|
|
type BlockWeights = ();
|
|
type BlockLength = ();
|
|
type DbWeight = ();
|
|
type RuntimeOrigin = RuntimeOrigin;
|
|
type Nonce = u64;
|
|
type Hash = H256;
|
|
type RuntimeCall = RuntimeCall;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = AccountId32;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Block = Block;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type Version = ();
|
|
type PalletInfo = PalletInfo;
|
|
type AccountData = pezpallet_balances::AccountData<u128>;
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
type SS58Prefix = ();
|
|
type OnSetCode = ();
|
|
type MaxConsumers = pezframe_support::traits::ConstU32<16>;
|
|
}
|
|
|
|
#[derive_impl(pezpallet_balances::config_preludes::TestDefaultConfig)]
|
|
impl pezpallet_balances::Config for Runtime {
|
|
type Balance = u128;
|
|
type AccountStore = System;
|
|
}
|
|
|
|
impl pezpallet_timestamp::Config for Runtime {
|
|
type Moment = u64;
|
|
type OnTimestampSet = ();
|
|
type MinimumPeriod = ();
|
|
type WeightInfo = ();
|
|
}
|
|
|
|
impl Config for Runtime {
|
|
type Currency = Balances;
|
|
type RcBlockNumberProvider = System; // Wrong but unused
|
|
type WeightInfo = ();
|
|
}
|