git.delta.rocks / unique-network / refs/commits / 67f20da6affd

difftreelog

source

pallets/orml-vesting/src/default_weight.rs952 Bsourcehistory
1//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.023#![allow(unused_parens)]4#![allow(unused_imports)]5#![allow(clippy::unnecessary_cast)]67use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight};89impl crate::WeightInfo for () {10	fn vested_transfer() -> Weight {11		(310_862_000 as Weight)12			.saturating_add(DbWeight::get().reads(4 as Weight))13			.saturating_add(DbWeight::get().writes(4 as Weight))14	}15	fn claim(i: u32) -> Weight {16		(158_614_000 as Weight)17			.saturating_add((958_000 as Weight).saturating_mul(i as Weight))18			.saturating_add(DbWeight::get().reads(3 as Weight))19			.saturating_add(DbWeight::get().writes(3 as Weight))20	}21	fn update_vesting_schedules(i: u32) -> Weight {22		(119_811_000 as Weight)23			.saturating_add((2_320_000 as Weight).saturating_mul(i as Weight))24			.saturating_add(DbWeight::get().reads(2 as Weight))25			.saturating_add(DbWeight::get().writes(3 as Weight))26	}27}