change HashFor to HashingFor (#2828)

* change HashFor to HashingFor

* update lockfile for {"substrate", "polkadot"}

---------

Co-authored-by: parity-processbot <>
This commit is contained in:
Marijn Schouten
2023-07-25 19:42:42 +02:00
committed by GitHub
parent bc5a52678a
commit c1b95feaac
7 changed files with 282 additions and 281 deletions
+264 -264
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -24,7 +24,7 @@ use sc_client_api::BlockBackend;
use sp_api::{ApiExt, ProvideRuntimeApi}; use sp_api::{ApiExt, ProvideRuntimeApi};
use sp_consensus::BlockStatus; use sp_consensus::BlockStatus;
use sp_core::traits::SpawnNamed; use sp_core::traits::SpawnNamed;
use sp_runtime::traits::{Block as BlockT, HashFor, Header as HeaderT, Zero}; use sp_runtime::traits::{Block as BlockT, HashingFor, Header as HeaderT, Zero};
use cumulus_client_consensus_common::ParachainCandidate; use cumulus_client_consensus_common::ParachainCandidate;
use polkadot_node_primitives::{ use polkadot_node_primitives::{
@@ -222,7 +222,7 @@ where
let compact_proof = match candidate let compact_proof = match candidate
.proof .proof
.into_compact_proof::<HashFor<Block>>(*parent_header.state_root()) .into_compact_proof::<HashingFor<Block>>(*parent_header.state_root())
{ {
Ok(proof) => proof, Ok(proof) => proof,
Err(e) => { Err(e) => {
@@ -51,7 +51,7 @@ use sp_inherents::{CreateInherentDataProviders, InherentData, InherentDataProvid
use sp_keystore::KeystorePtr; use sp_keystore::KeystorePtr;
use sp_runtime::{ use sp_runtime::{
generic::Digest, generic::Digest,
traits::{Block as BlockT, HashFor, Header as HeaderT, Member}, traits::{Block as BlockT, HashingFor, Header as HeaderT, Member},
}; };
use sp_state_machine::StorageChanges; use sp_state_machine::StorageChanges;
use sp_timestamp::Timestamp; use sp_timestamp::Timestamp;
@@ -324,7 +324,7 @@ where
/// Seal a block with a signature in the header. /// Seal a block with a signature in the header.
pub fn seal<B: BlockT, T, P>( pub fn seal<B: BlockT, T, P>(
pre_sealed: B, pre_sealed: B,
storage_changes: StorageChanges<T, HashFor<B>>, storage_changes: StorageChanges<T, HashingFor<B>>,
author_pub: &P::Public, author_pub: &P::Public,
keystore: &KeystorePtr, keystore: &KeystorePtr,
) -> Result<BlockImportParams<B, T>, Box<dyn Error>> ) -> Result<BlockImportParams<B, T>, Box<dyn Error>>
@@ -19,7 +19,7 @@ use cumulus_primitives_core::{
relay_chain, AbridgedHostConfiguration, AbridgedHrmpChannel, ParaId, relay_chain, AbridgedHostConfiguration, AbridgedHrmpChannel, ParaId,
}; };
use scale_info::TypeInfo; use scale_info::TypeInfo;
use sp_runtime::traits::HashFor; use sp_runtime::traits::HashingFor;
use sp_state_machine::{Backend, TrieBackend, TrieBackendBuilder}; use sp_state_machine::{Backend, TrieBackend, TrieBackendBuilder};
use sp_std::vec::Vec; use sp_std::vec::Vec;
use sp_trie::{HashDBT, MemoryDB, StorageProof, EMPTY_PREFIX}; use sp_trie::{HashDBT, MemoryDB, StorageProof, EMPTY_PREFIX};
@@ -114,7 +114,7 @@ pub enum ReadEntryErr {
fn read_entry<T, B>(backend: &B, key: &[u8], fallback: Option<T>) -> Result<T, ReadEntryErr> fn read_entry<T, B>(backend: &B, key: &[u8], fallback: Option<T>) -> Result<T, ReadEntryErr>
where where
T: Decode, T: Decode,
B: Backend<HashFor<relay_chain::Block>>, B: Backend<HashingFor<relay_chain::Block>>,
{ {
backend backend
.storage(key) .storage(key)
@@ -133,7 +133,7 @@ where
fn read_optional_entry<T, B>(backend: &B, key: &[u8]) -> Result<Option<T>, ReadEntryErr> fn read_optional_entry<T, B>(backend: &B, key: &[u8]) -> Result<Option<T>, ReadEntryErr>
where where
T: Decode, T: Decode,
B: Backend<HashFor<relay_chain::Block>>, B: Backend<HashingFor<relay_chain::Block>>,
{ {
match read_entry(backend, key, None) { match read_entry(backend, key, None) {
Ok(v) => Ok(Some(v)), Ok(v) => Ok(Some(v)),
@@ -147,7 +147,8 @@ where
/// This state proof is extracted from the relay chain block we are building on top of. /// This state proof is extracted from the relay chain block we are building on top of.
pub struct RelayChainStateProof { pub struct RelayChainStateProof {
para_id: ParaId, para_id: ParaId,
trie_backend: TrieBackend<MemoryDB<HashFor<relay_chain::Block>>, HashFor<relay_chain::Block>>, trie_backend:
TrieBackend<MemoryDB<HashingFor<relay_chain::Block>>, HashingFor<relay_chain::Block>>,
} }
impl RelayChainStateProof { impl RelayChainStateProof {
@@ -160,7 +161,7 @@ impl RelayChainStateProof {
relay_parent_storage_root: relay_chain::Hash, relay_parent_storage_root: relay_chain::Hash,
proof: StorageProof, proof: StorageProof,
) -> Result<Self, Error> { ) -> Result<Self, Error> {
let db = proof.into_memory_db::<HashFor<relay_chain::Block>>(); let db = proof.into_memory_db::<HashingFor<relay_chain::Block>>();
if !db.contains(&relay_parent_storage_root, EMPTY_PREFIX) { if !db.contains(&relay_parent_storage_root, EMPTY_PREFIX) {
return Err(Error::RootMismatch) return Err(Error::RootMismatch)
} }
@@ -30,17 +30,17 @@ use frame_support::traits::{ExecuteBlock, ExtrinsicCall, Get, IsSubType};
use sp_core::storage::{ChildInfo, StateVersion}; use sp_core::storage::{ChildInfo, StateVersion};
use sp_externalities::{set_and_run_with_externalities, Externalities}; use sp_externalities::{set_and_run_with_externalities, Externalities};
use sp_io::KillStorageResult; use sp_io::KillStorageResult;
use sp_runtime::traits::{Block as BlockT, Extrinsic, HashFor, Header as HeaderT}; use sp_runtime::traits::{Block as BlockT, Extrinsic, HashingFor, Header as HeaderT};
use sp_std::prelude::*; use sp_std::prelude::*;
use sp_trie::MemoryDB; use sp_trie::MemoryDB;
type TrieBackend<B> = sp_state_machine::TrieBackend< type TrieBackend<B> = sp_state_machine::TrieBackend<
MemoryDB<HashFor<B>>, MemoryDB<HashingFor<B>>,
HashFor<B>, HashingFor<B>,
trie_cache::CacheProvider<HashFor<B>>, trie_cache::CacheProvider<HashingFor<B>>,
>; >;
type Ext<'a, B> = sp_state_machine::Ext<'a, HashFor<B>, TrieBackend<B>>; type Ext<'a, B> = sp_state_machine::Ext<'a, HashingFor<B>, TrieBackend<B>>;
fn with_externalities<F: FnOnce(&mut dyn Externalities) -> R, R>(f: F) -> R { fn with_externalities<F: FnOnce(&mut dyn Externalities) -> R, R>(f: F) -> R {
sp_externalities::with_externalities(f).expect("Environmental externalities not set.") sp_externalities::with_externalities(f).expect("Environmental externalities not set.")
+1 -1
View File
@@ -59,7 +59,7 @@ where
C::Api: BlockBuilder<Block>, C::Api: BlockBuilder<Block>,
P: TransactionPool + Sync + Send + 'static, P: TransactionPool + Sync + Send + 'static,
B: sc_client_api::Backend<Block> + Send + Sync + 'static, B: sc_client_api::Backend<Block> + Send + Sync + 'static,
B::State: sc_client_api::backend::StateBackend<sp_runtime::traits::HashFor<Block>>, B::State: sc_client_api::backend::StateBackend<sp_runtime::traits::HashingFor<Block>>,
{ {
use frame_rpc_system::{System, SystemApiServer}; use frame_rpc_system::{System, SystemApiServer};
use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer}; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};
+2 -2
View File
@@ -18,7 +18,7 @@ use cumulus_primitives_core::{
relay_chain, AbridgedHostConfiguration, AbridgedHrmpChannel, ParaId, relay_chain, AbridgedHostConfiguration, AbridgedHrmpChannel, ParaId,
}; };
use polkadot_primitives::UpgradeGoAhead; use polkadot_primitives::UpgradeGoAhead;
use sp_runtime::traits::HashFor; use sp_runtime::traits::HashingFor;
use sp_state_machine::MemoryDB; use sp_state_machine::MemoryDB;
use sp_std::collections::btree_map::BTreeMap; use sp_std::collections::btree_map::BTreeMap;
@@ -104,7 +104,7 @@ impl RelayStateSproofBuilder {
pub fn into_state_root_and_proof( pub fn into_state_root_and_proof(
self, self,
) -> (polkadot_primitives::Hash, sp_state_machine::StorageProof) { ) -> (polkadot_primitives::Hash, sp_state_machine::StorageProof) {
let (db, root) = MemoryDB::<HashFor<polkadot_primitives::Block>>::default_with_root(); let (db, root) = MemoryDB::<HashingFor<polkadot_primitives::Block>>::default_with_root();
let state_version = Default::default(); // for test using default. let state_version = Default::default(); // for test using default.
let mut backend = sp_state_machine::TrieBackendBuilder::new(db, root).build(); let mut backend = sp_state_machine::TrieBackendBuilder::new(db, root).build();