mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
* Fix up proxy * Update weights * Fixes * rename 'proxy_announced' -> 'announced_proxy' * flip rename * update weight formulas * Fixes * fix merge * Fix runtime * Fix runtimes * "Update Substrate" Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com> Co-authored-by: parity-processbot <>
This commit is contained in:
Generated
+729
-370
File diff suppressed because it is too large
Load Diff
@@ -92,8 +92,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
#[cfg(not(feature = "disable-runtime-api"))]
|
#[cfg(not(feature = "disable-runtime-api"))]
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
#[cfg(feature = "disable-runtime-api")]
|
#[cfg(feature = "disable-runtime-api")]
|
||||||
apis: sp_version::create_apis_vec![[]],
|
apis: version::create_apis_vec![[]],
|
||||||
transaction_version: 2,
|
transaction_version: 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Native version.
|
/// Native version.
|
||||||
@@ -752,6 +752,9 @@ parameter_types! {
|
|||||||
// Additional storage item size of 33 bytes.
|
// Additional storage item size of 33 bytes.
|
||||||
pub const ProxyDepositFactor: Balance = deposit(0, 33);
|
pub const ProxyDepositFactor: Balance = deposit(0, 33);
|
||||||
pub const MaxProxies: u16 = 32;
|
pub const MaxProxies: u16 = 32;
|
||||||
|
pub const AnnouncementDepositBase: Balance = deposit(1, 8);
|
||||||
|
pub const AnnouncementDepositFactor: Balance = deposit(0, 66);
|
||||||
|
pub const MaxPending: u16 = 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<I: frame_support::traits::Instance> dummy::Trait<I> for Runtime { }
|
impl<I: frame_support::traits::Instance> dummy::Trait<I> for Runtime { }
|
||||||
@@ -847,7 +850,11 @@ impl pallet_proxy::Trait for Runtime {
|
|||||||
type ProxyDepositBase = ProxyDepositBase;
|
type ProxyDepositBase = ProxyDepositBase;
|
||||||
type ProxyDepositFactor = ProxyDepositFactor;
|
type ProxyDepositFactor = ProxyDepositFactor;
|
||||||
type MaxProxies = MaxProxies;
|
type MaxProxies = MaxProxies;
|
||||||
type WeightInfo = ();
|
type WeightInfo = weights::pallet_proxy::WeightInfo;
|
||||||
|
type MaxPending = MaxPending;
|
||||||
|
type CallHasher = BlakeTwo256;
|
||||||
|
type AnnouncementDepositBase = AnnouncementDepositBase;
|
||||||
|
type AnnouncementDepositFactor = AnnouncementDepositFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct CustomOnRuntimeUpgrade;
|
pub struct CustomOnRuntimeUpgrade;
|
||||||
|
|||||||
@@ -21,3 +21,4 @@ pub mod pallet_balances;
|
|||||||
pub mod pallet_democracy;
|
pub mod pallet_democracy;
|
||||||
pub mod pallet_timestamp;
|
pub mod pallet_timestamp;
|
||||||
pub mod pallet_utility;
|
pub mod pallet_utility;
|
||||||
|
pub mod pallet_proxy;
|
||||||
|
|||||||
@@ -0,0 +1,86 @@
|
|||||||
|
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Polkadot.
|
||||||
|
|
||||||
|
// Polkadot 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.
|
||||||
|
|
||||||
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.0-rc5
|
||||||
|
|
||||||
|
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight};
|
||||||
|
|
||||||
|
pub struct WeightInfo;
|
||||||
|
impl pallet_proxy::WeightInfo for WeightInfo {
|
||||||
|
fn proxy(p: u32, ) -> Weight {
|
||||||
|
(26127000 as Weight)
|
||||||
|
.saturating_add((214000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
}
|
||||||
|
fn proxy_announced(a: u32, p: u32, ) -> Weight {
|
||||||
|
(55405000 as Weight)
|
||||||
|
.saturating_add((774000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((209000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(3 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_announcement(a: u32, p: u32, ) -> Weight {
|
||||||
|
(35879000 as Weight)
|
||||||
|
.saturating_add((783000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((20000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn reject_announcement(a: u32, p: u32, ) -> Weight {
|
||||||
|
(36097000 as Weight)
|
||||||
|
.saturating_add((780000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((12000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn announce(a: u32, p: u32, ) -> Weight {
|
||||||
|
(53769000 as Weight)
|
||||||
|
.saturating_add((675000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((214000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(3 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn add_proxy(p: u32, ) -> Weight {
|
||||||
|
(36082000 as Weight)
|
||||||
|
.saturating_add((234000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_proxy(p: u32, ) -> Weight {
|
||||||
|
(32885000 as Weight)
|
||||||
|
.saturating_add((267000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_proxies(p: u32, ) -> Weight {
|
||||||
|
(31735000 as Weight)
|
||||||
|
.saturating_add((215000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn anonymous(p: u32, ) -> Weight {
|
||||||
|
(50907000 as Weight)
|
||||||
|
.saturating_add((61000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn kill_anonymous(p: u32, ) -> Weight {
|
||||||
|
(33926000 as Weight)
|
||||||
|
.saturating_add((208000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -91,8 +91,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
#[cfg(not(feature = "disable-runtime-api"))]
|
#[cfg(not(feature = "disable-runtime-api"))]
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
#[cfg(feature = "disable-runtime-api")]
|
#[cfg(feature = "disable-runtime-api")]
|
||||||
apis: sp_version::create_apis_vec![[]],
|
apis: version::create_apis_vec![[]],
|
||||||
transaction_version: 4,
|
transaction_version: 5,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Native version.
|
/// Native version.
|
||||||
@@ -741,6 +741,9 @@ parameter_types! {
|
|||||||
// Additional storage item size of 33 bytes.
|
// Additional storage item size of 33 bytes.
|
||||||
pub const ProxyDepositFactor: Balance = deposit(0, 33);
|
pub const ProxyDepositFactor: Balance = deposit(0, 33);
|
||||||
pub const MaxProxies: u16 = 32;
|
pub const MaxProxies: u16 = 32;
|
||||||
|
pub const AnnouncementDepositBase: Balance = deposit(1, 8);
|
||||||
|
pub const AnnouncementDepositFactor: Balance = deposit(0, 66);
|
||||||
|
pub const MaxPending: u16 = 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<I: frame_support::traits::Instance> dummy::Trait<I> for Runtime { }
|
impl<I: frame_support::traits::Instance> dummy::Trait<I> for Runtime { }
|
||||||
@@ -859,7 +862,11 @@ impl pallet_proxy::Trait for Runtime {
|
|||||||
type ProxyDepositBase = ProxyDepositBase;
|
type ProxyDepositBase = ProxyDepositBase;
|
||||||
type ProxyDepositFactor = ProxyDepositFactor;
|
type ProxyDepositFactor = ProxyDepositFactor;
|
||||||
type MaxProxies = MaxProxies;
|
type MaxProxies = MaxProxies;
|
||||||
type WeightInfo = ();
|
type WeightInfo = weights::pallet_proxy::WeightInfo;
|
||||||
|
type MaxPending = MaxPending;
|
||||||
|
type CallHasher = BlakeTwo256;
|
||||||
|
type AnnouncementDepositBase = AnnouncementDepositBase;
|
||||||
|
type AnnouncementDepositFactor = AnnouncementDepositFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct CustomOnRuntimeUpgrade;
|
pub struct CustomOnRuntimeUpgrade;
|
||||||
|
|||||||
@@ -21,3 +21,4 @@ pub mod pallet_balances;
|
|||||||
pub mod pallet_democracy;
|
pub mod pallet_democracy;
|
||||||
pub mod pallet_timestamp;
|
pub mod pallet_timestamp;
|
||||||
pub mod pallet_utility;
|
pub mod pallet_utility;
|
||||||
|
pub mod pallet_proxy;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/// Weights for the Balances Pallet
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.0-rc5
|
||||||
|
|
||||||
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight};
|
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight};
|
||||||
pub struct WeightInfo;
|
pub struct WeightInfo;
|
||||||
|
|||||||
@@ -0,0 +1,86 @@
|
|||||||
|
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Polkadot.
|
||||||
|
|
||||||
|
// Polkadot 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.
|
||||||
|
|
||||||
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.0-rc5
|
||||||
|
|
||||||
|
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight};
|
||||||
|
|
||||||
|
pub struct WeightInfo;
|
||||||
|
impl pallet_proxy::WeightInfo for WeightInfo {
|
||||||
|
fn proxy(p: u32, ) -> Weight {
|
||||||
|
(26127000 as Weight)
|
||||||
|
.saturating_add((214000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
}
|
||||||
|
fn proxy_announced(a: u32, p: u32, ) -> Weight {
|
||||||
|
(55405000 as Weight)
|
||||||
|
.saturating_add((774000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((209000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(3 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_announcement(a: u32, p: u32, ) -> Weight {
|
||||||
|
(35879000 as Weight)
|
||||||
|
.saturating_add((783000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((20000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn reject_announcement(a: u32, p: u32, ) -> Weight {
|
||||||
|
(36097000 as Weight)
|
||||||
|
.saturating_add((780000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((12000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn announce(a: u32, p: u32, ) -> Weight {
|
||||||
|
(53769000 as Weight)
|
||||||
|
.saturating_add((675000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((214000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(3 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn add_proxy(p: u32, ) -> Weight {
|
||||||
|
(36082000 as Weight)
|
||||||
|
.saturating_add((234000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_proxy(p: u32, ) -> Weight {
|
||||||
|
(32885000 as Weight)
|
||||||
|
.saturating_add((267000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_proxies(p: u32, ) -> Weight {
|
||||||
|
(31735000 as Weight)
|
||||||
|
.saturating_add((215000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn anonymous(p: u32, ) -> Weight {
|
||||||
|
(50907000 as Weight)
|
||||||
|
.saturating_add((61000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn kill_anonymous(p: u32, ) -> Weight {
|
||||||
|
(33926000 as Weight)
|
||||||
|
.saturating_add((208000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -89,8 +89,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
#[cfg(not(feature = "disable-runtime-api"))]
|
#[cfg(not(feature = "disable-runtime-api"))]
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
#[cfg(feature = "disable-runtime-api")]
|
#[cfg(feature = "disable-runtime-api")]
|
||||||
apis: sp_version::create_apis_vec![[]],
|
apis: version::create_apis_vec![[]],
|
||||||
transaction_version: 2,
|
transaction_version: 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Native version.
|
/// Native version.
|
||||||
@@ -543,6 +543,9 @@ parameter_types! {
|
|||||||
// Additional storage item size of 33 bytes.
|
// Additional storage item size of 33 bytes.
|
||||||
pub const ProxyDepositFactor: Balance = deposit(0, 33);
|
pub const ProxyDepositFactor: Balance = deposit(0, 33);
|
||||||
pub const MaxProxies: u16 = 32;
|
pub const MaxProxies: u16 = 32;
|
||||||
|
pub const AnnouncementDepositBase: Balance = deposit(1, 8);
|
||||||
|
pub const AnnouncementDepositFactor: Balance = deposit(0, 66);
|
||||||
|
pub const MaxPending: u16 = 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The type used to represent the kinds of proxying allowed.
|
/// The type used to represent the kinds of proxying allowed.
|
||||||
@@ -629,7 +632,11 @@ impl pallet_proxy::Trait for Runtime {
|
|||||||
type ProxyDepositBase = ProxyDepositBase;
|
type ProxyDepositBase = ProxyDepositBase;
|
||||||
type ProxyDepositFactor = ProxyDepositFactor;
|
type ProxyDepositFactor = ProxyDepositFactor;
|
||||||
type MaxProxies = MaxProxies;
|
type MaxProxies = MaxProxies;
|
||||||
type WeightInfo = ();
|
type WeightInfo = weights::pallet_proxy::WeightInfo;
|
||||||
|
type MaxPending = MaxPending;
|
||||||
|
type CallHasher = BlakeTwo256;
|
||||||
|
type AnnouncementDepositBase = AnnouncementDepositBase;
|
||||||
|
type AnnouncementDepositFactor = AnnouncementDepositFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
|
|||||||
@@ -20,3 +20,4 @@ pub mod frame_system;
|
|||||||
pub mod pallet_balances;
|
pub mod pallet_balances;
|
||||||
pub mod pallet_timestamp;
|
pub mod pallet_timestamp;
|
||||||
pub mod pallet_utility;
|
pub mod pallet_utility;
|
||||||
|
pub mod pallet_proxy;
|
||||||
|
|||||||
@@ -0,0 +1,86 @@
|
|||||||
|
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Polkadot.
|
||||||
|
|
||||||
|
// Polkadot 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.
|
||||||
|
|
||||||
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.0-rc5
|
||||||
|
|
||||||
|
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight};
|
||||||
|
|
||||||
|
pub struct WeightInfo;
|
||||||
|
impl pallet_proxy::WeightInfo for WeightInfo {
|
||||||
|
fn proxy(p: u32, ) -> Weight {
|
||||||
|
(26127000 as Weight)
|
||||||
|
.saturating_add((214000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
}
|
||||||
|
fn proxy_announced(a: u32, p: u32, ) -> Weight {
|
||||||
|
(55405000 as Weight)
|
||||||
|
.saturating_add((774000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((209000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(3 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_announcement(a: u32, p: u32, ) -> Weight {
|
||||||
|
(35879000 as Weight)
|
||||||
|
.saturating_add((783000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((20000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn reject_announcement(a: u32, p: u32, ) -> Weight {
|
||||||
|
(36097000 as Weight)
|
||||||
|
.saturating_add((780000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((12000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn announce(a: u32, p: u32, ) -> Weight {
|
||||||
|
(53769000 as Weight)
|
||||||
|
.saturating_add((675000 as Weight).saturating_mul(a as Weight))
|
||||||
|
.saturating_add((214000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(3 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(2 as Weight))
|
||||||
|
}
|
||||||
|
fn add_proxy(p: u32, ) -> Weight {
|
||||||
|
(36082000 as Weight)
|
||||||
|
.saturating_add((234000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_proxy(p: u32, ) -> Weight {
|
||||||
|
(32885000 as Weight)
|
||||||
|
.saturating_add((267000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn remove_proxies(p: u32, ) -> Weight {
|
||||||
|
(31735000 as Weight)
|
||||||
|
.saturating_add((215000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn anonymous(p: u32, ) -> Weight {
|
||||||
|
(50907000 as Weight)
|
||||||
|
.saturating_add((61000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(2 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
fn kill_anonymous(p: u32, ) -> Weight {
|
||||||
|
(33926000 as Weight)
|
||||||
|
.saturating_add((208000 as Weight).saturating_mul(p as Weight))
|
||||||
|
.saturating_add(DbWeight::get().reads(1 as Weight))
|
||||||
|
.saturating_add(DbWeight::get().writes(1 as Weight))
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user