mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 17:28:00 +00:00
a757dfb222
* added fee calculations; need some type conversions * cleaned up make_payment and other stuff * rename vars to compile * add WeightToFee type * clean test files after new type added to balances * fmting * fix balance configs in tests * more fixing mocks and tests * more comprehensive block weight limit test * fix compilation errors * more srml/executive tests && started fixing node/executor tests * new fee multiplier; still overflows :( * perbill at the end attempt; needs to be changed * clean fmting, rename some vars * new PoC implementation. * test weight_to_fee range and verify functionality * 12 of 15 tests in node executor are passing * 1 test failing; big_block imports are failing for wrong reasons * Update srml/executive/src/lib.rs Co-Authored-By: Kian Peymani <Kianenigma@users.noreply.github.com> * Some cleanup. * consolidate tests in runtime impls * clean and condition executive for stateful fee range test * remove comments to self * Major cleanup. * More cleanup. * Fix lock files. * Fix build. * Update node-template/runtime/Cargo.toml Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Update node/executor/src/lib.rs Co-Authored-By: Gavin Wood <github@gavwood.com> * Per-block update. * nit. * Update docs. * Fix contracts test. * Stateful fee update. * Update lock files. * Update node/runtime/src/impls.rs * Revamped again with fixed64. * fix cargo file. * nits. * Some cleanup. * Some nits. * Fix build. * Bump. * Rename to WeightMultiplier * Update node/executor/src/lib.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Add weight to election module mock. * Fix build. * finalize merge * Update srml/system/src/lib.rs * Bring back fees. * Some nits. * Code shifting for simplicity. * Fix build + more tests. * Update weights.rs * Update core/sr-primitives/src/weights.rs * Update lib.rs * Fix test build
99 lines
2.5 KiB
Rust
99 lines
2.5 KiB
Rust
// Copyright 2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use criterion::{Criterion, criterion_group, criterion_main, black_box};
|
|
use srml_system as system;
|
|
use srml_support::{decl_module, decl_event, impl_outer_origin, impl_outer_event};
|
|
use runtime_io::{with_externalities, Blake2Hasher};
|
|
use substrate_primitives::H256;
|
|
use primitives::{
|
|
BuildStorage, traits::{BlakeTwo256, IdentityLookup},
|
|
testing::Header,
|
|
};
|
|
|
|
mod module {
|
|
use super::*;
|
|
|
|
pub trait Trait: system::Trait {
|
|
type Event: From<Event> + Into<<Self as system::Trait>::Event>;
|
|
}
|
|
|
|
decl_module! {
|
|
pub struct Module<T: Trait> for enum Call where origin: T::Origin {
|
|
pub fn deposit_event() = default;
|
|
}
|
|
}
|
|
|
|
decl_event!(
|
|
pub enum Event {
|
|
Complex(Vec<u8>, u32, u16, u128),
|
|
}
|
|
);
|
|
}
|
|
|
|
impl_outer_origin!{
|
|
pub enum Origin for Runtime {}
|
|
}
|
|
|
|
impl_outer_event! {
|
|
pub enum Event for Runtime {
|
|
module,
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Eq, PartialEq)]
|
|
pub struct Runtime;
|
|
impl system::Trait for Runtime {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type WeightMultiplierUpdate = ();
|
|
type Event = Event;
|
|
}
|
|
|
|
impl module::Trait for Runtime {
|
|
type Event = Event;
|
|
}
|
|
|
|
fn new_test_ext() -> runtime_io::TestExternalities<Blake2Hasher> {
|
|
system::GenesisConfig::<Runtime>::default().build_storage().unwrap().0.into()
|
|
}
|
|
|
|
fn deposit_events(n: usize) {
|
|
let mut t = new_test_ext();
|
|
with_externalities(&mut t, || {
|
|
for _ in 0..n {
|
|
module::Module::<Runtime>::deposit_event(
|
|
module::Event::Complex(vec![1, 2, 3], 2, 3, 899)
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
fn sr_system_benchmark(c: &mut Criterion) {
|
|
c.bench_function("deposit 100 events", |b| {
|
|
b.iter(|| deposit_events(black_box(100)))
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, sr_system_benchmark);
|
|
criterion_main!(benches);
|