Companion for #9764 (Force Unreserve) (#3840)

* add force_unreserve weight

* update Substrate

Co-authored-by: parity-processbot <>
This commit is contained in:
Shawn Tabrizi
2021-09-16 15:15:32 -04:00
committed by GitHub
parent dde0918717
commit f8e5d7dc0a
4 changed files with 170 additions and 152 deletions
@@ -72,4 +72,10 @@ impl<T: frame_system::Config> pallet_balances::WeightInfo for WeightInfo<T> {
.saturating_add(T::DbWeight::get().reads(1 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: System Account (r:1 w:1)
fn force_unreserve() -> Weight {
(27_766_000 as Weight)
.saturating_add(T::DbWeight::get().reads(1 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
}