mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 01:58:00 +00:00
8e7adaf283
* add new trait * implement DispatchableWithStorageLayer * at least one transactional * all dispatch is at least transactional * storage_layer api * add test * storage layer tests * deprecate transactional tag * i guess no reason to deprecate * remove transactional from batch_all * update tests * extend trait * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_balances --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/balances/src/weights.rs --template=./.maintain/frame-weight-template.hbs * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_balances --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/balances/src/weights.rs --template=./.maintain/frame-weight-template.hbs * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_staking --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/staking/src/weights.rs --template=./.maintain/frame-weight-template.hbs * fix copy paste name * cargo run --quiet --profile=production --features runtime-benchmarks --manifest-path bin/node/cli/Cargo.toml -- benchmark pallet --chain=dev --steps=50 --repeat=20 --pallet=pallet_utility --extrinsic=* --execution=wasm --wasm-execution=compiled --output=./frame/utility/src/weights.rs --template=./.maintain/frame-weight-template.hbs * Create run_all_benchmarks.sh * uncomment build * update number of steps and repeats * add skip build * Update run_all_benchmarks.sh * Update run_all_benchmarks.sh * new benchmarks * Update frame/support/src/traits/dispatch.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/src/traits/dispatch.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/test/tests/storage_layers.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/support/test/tests/storage_layers.rs * weights * Update dispatch.rs * doc link * decl_macro support Co-authored-by: Parity Bot <admin@parity.io> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
442 lines
16 KiB
Rust
442 lines
16 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2022 Parity Technologies (UK) Ltd.
|
|
// 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.
|
|
|
|
//! Autogenerated weights for pallet_assets
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2022-05-23, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate
|
|
// benchmark
|
|
// pallet
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_assets
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
// --output=./frame/assets/src/weights.rs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_assets.
|
|
pub trait WeightInfo {
|
|
fn create() -> Weight;
|
|
fn force_create() -> Weight;
|
|
fn destroy(c: u32, s: u32, a: u32, ) -> Weight;
|
|
fn mint() -> Weight;
|
|
fn burn() -> Weight;
|
|
fn transfer() -> Weight;
|
|
fn transfer_keep_alive() -> Weight;
|
|
fn force_transfer() -> Weight;
|
|
fn freeze() -> Weight;
|
|
fn thaw() -> Weight;
|
|
fn freeze_asset() -> Weight;
|
|
fn thaw_asset() -> Weight;
|
|
fn transfer_ownership() -> Weight;
|
|
fn set_team() -> Weight;
|
|
fn set_metadata(n: u32, s: u32, ) -> Weight;
|
|
fn clear_metadata() -> Weight;
|
|
fn force_set_metadata(n: u32, s: u32, ) -> Weight;
|
|
fn force_clear_metadata() -> Weight;
|
|
fn force_asset_status() -> Weight;
|
|
fn approve_transfer() -> Weight;
|
|
fn transfer_approved() -> Weight;
|
|
fn cancel_approval() -> Weight;
|
|
fn force_cancel_approval() -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_assets using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn create() -> Weight {
|
|
(27_167_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn force_create() -> Weight {
|
|
(15_473_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:5002 w:5001)
|
|
// Storage: System Account (r:5000 w:5000)
|
|
// Storage: Assets Metadata (r:1 w:0)
|
|
// Storage: Assets Approvals (r:501 w:500)
|
|
fn destroy(c: u32, s: u32, a: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 37_000
|
|
.saturating_add((17_145_000 as Weight).saturating_mul(c as Weight))
|
|
// Standard Error: 37_000
|
|
.saturating_add((19_333_000 as Weight).saturating_mul(s as Weight))
|
|
// Standard Error: 375_000
|
|
.saturating_add((17_046_000 as Weight).saturating_mul(a as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(5 as Weight))
|
|
.saturating_add(T::DbWeight::get().reads((2 as Weight).saturating_mul(c as Weight)))
|
|
.saturating_add(T::DbWeight::get().reads((2 as Weight).saturating_mul(s as Weight)))
|
|
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(a as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes((2 as Weight).saturating_mul(c as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes((2 as Weight).saturating_mul(s as Weight)))
|
|
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(a as Weight)))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn mint() -> Weight {
|
|
(30_819_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn burn() -> Weight {
|
|
(35_212_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn transfer() -> Weight {
|
|
(47_401_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn transfer_keep_alive() -> Weight {
|
|
(42_300_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn force_transfer() -> Weight {
|
|
(47_946_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(4 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn freeze() -> Weight {
|
|
(21_670_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn thaw() -> Weight {
|
|
(21_503_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn freeze_asset() -> Weight {
|
|
(18_158_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn thaw_asset() -> Weight {
|
|
(18_525_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Metadata (r:1 w:0)
|
|
fn transfer_ownership() -> Weight {
|
|
(19_858_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn set_team() -> Weight {
|
|
(18_045_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn set_metadata(n: u32, s: u32, ) -> Weight {
|
|
(32_395_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((5_000 as Weight).saturating_mul(n as Weight))
|
|
// Standard Error: 0
|
|
.saturating_add((2_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn clear_metadata() -> Weight {
|
|
(32_893_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn force_set_metadata(_n: u32, s: u32, ) -> Weight {
|
|
(19_586_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((1_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn force_clear_metadata() -> Weight {
|
|
(32_478_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn force_asset_status() -> Weight {
|
|
(17_143_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(1 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
fn approve_transfer() -> Weight {
|
|
(36_389_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn transfer_approved() -> Weight {
|
|
(61_854_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(5 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(5 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
fn cancel_approval() -> Weight {
|
|
(36_759_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
fn force_cancel_approval() -> Weight {
|
|
(37_753_000 as Weight)
|
|
.saturating_add(T::DbWeight::get().reads(2 as Weight))
|
|
.saturating_add(T::DbWeight::get().writes(2 as Weight))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn create() -> Weight {
|
|
(27_167_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn force_create() -> Weight {
|
|
(15_473_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:5002 w:5001)
|
|
// Storage: System Account (r:5000 w:5000)
|
|
// Storage: Assets Metadata (r:1 w:0)
|
|
// Storage: Assets Approvals (r:501 w:500)
|
|
fn destroy(c: u32, s: u32, a: u32, ) -> Weight {
|
|
(0 as Weight)
|
|
// Standard Error: 37_000
|
|
.saturating_add((17_145_000 as Weight).saturating_mul(c as Weight))
|
|
// Standard Error: 37_000
|
|
.saturating_add((19_333_000 as Weight).saturating_mul(s as Weight))
|
|
// Standard Error: 375_000
|
|
.saturating_add((17_046_000 as Weight).saturating_mul(a as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(5 as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads((2 as Weight).saturating_mul(c as Weight)))
|
|
.saturating_add(RocksDbWeight::get().reads((2 as Weight).saturating_mul(s as Weight)))
|
|
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(a as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes((2 as Weight).saturating_mul(c as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes((2 as Weight).saturating_mul(s as Weight)))
|
|
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(a as Weight)))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn mint() -> Weight {
|
|
(30_819_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn burn() -> Weight {
|
|
(35_212_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn transfer() -> Weight {
|
|
(47_401_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn transfer_keep_alive() -> Weight {
|
|
(42_300_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn force_transfer() -> Weight {
|
|
(47_946_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(4 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn freeze() -> Weight {
|
|
(21_670_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Account (r:1 w:1)
|
|
fn thaw() -> Weight {
|
|
(21_503_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn freeze_asset() -> Weight {
|
|
(18_158_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn thaw_asset() -> Weight {
|
|
(18_525_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Metadata (r:1 w:0)
|
|
fn transfer_ownership() -> Weight {
|
|
(19_858_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn set_team() -> Weight {
|
|
(18_045_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn set_metadata(n: u32, s: u32, ) -> Weight {
|
|
(32_395_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((5_000 as Weight).saturating_mul(n as Weight))
|
|
// Standard Error: 0
|
|
.saturating_add((2_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn clear_metadata() -> Weight {
|
|
(32_893_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn force_set_metadata(_n: u32, s: u32, ) -> Weight {
|
|
(19_586_000 as Weight)
|
|
// Standard Error: 0
|
|
.saturating_add((1_000 as Weight).saturating_mul(s as Weight))
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:0)
|
|
// Storage: Assets Metadata (r:1 w:1)
|
|
fn force_clear_metadata() -> Weight {
|
|
(32_478_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
fn force_asset_status() -> Weight {
|
|
(17_143_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(1 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(1 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
fn approve_transfer() -> Weight {
|
|
(36_389_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Account (r:2 w:2)
|
|
// Storage: System Account (r:1 w:1)
|
|
fn transfer_approved() -> Weight {
|
|
(61_854_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(5 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(5 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
fn cancel_approval() -> Weight {
|
|
(36_759_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
// Storage: Assets Asset (r:1 w:1)
|
|
// Storage: Assets Approvals (r:1 w:1)
|
|
fn force_cancel_approval() -> Weight {
|
|
(37_753_000 as Weight)
|
|
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
|
|
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
|
|
}
|
|
}
|