Companion for Substrate #10719 (Into Account Truncating) (#1262)

* into account truncating

* more truncating

* Update Cargo.lock
This commit is contained in:
Shawn Tabrizi
2022-05-17 18:29:38 -04:00
committed by GitHub
parent 9b15f17391
commit 6ceca1d373
4 changed files with 294 additions and 359 deletions
+291 -356
View File
File diff suppressed because it is too large Load Diff
@@ -407,7 +407,7 @@ pub mod pallet {
impl<T: Config> Pallet<T> {
/// Get a unique, inaccessible account id from the `PotId`.
pub fn account_id() -> T::AccountId {
T::PotId::get().into_account()
T::PotId::get().into_account_truncating()
}
/// Removes a candidate if they exist and sends them back their deposit
@@ -308,7 +308,7 @@ pub fn run() -> Result<()> {
let id = ParaId::from(para_id);
let parachain_account =
AccountIdConversion::<polkadot_primitives::v2::AccountId>::into_account(&id);
AccountIdConversion::<polkadot_primitives::v2::AccountId>::into_account_truncating(&id);
let state_version =
RelayChainCli::native_runtime_version(&config.chain_spec).state_version();
+1 -1
View File
@@ -566,7 +566,7 @@ pub fn run() -> Result<()> {
let id = ParaId::from(para_id);
let parachain_account =
AccountIdConversion::<polkadot_primitives::v2::AccountId>::into_account(&id);
AccountIdConversion::<polkadot_primitives::v2::AccountId>::into_account_truncating(&id);
let state_version =
RelayChainCli::native_runtime_version(&config.chain_spec).state_version();