Rename from_components to from_parts (#12473)

* Rename `from_components` to `from_parts`

* Fixes

* Spelling
This commit is contained in:
Keith Yeung
2022-10-12 00:35:54 +08:00
committed by GitHub
parent e1e5b7037a
commit fbdfa84cd7
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ where
pub fn nested(&mut self, amount: Weight) -> Result<Self, DispatchError> {
// NOTE that it is ok to allocate all available gas since it still ensured
// by `charge` that it doesn't reach zero.
let amount = Weight::from_components(
let amount = Weight::from_parts(
if amount.ref_time().is_zero() {
self.gas_left().ref_time()
} else {