feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
// Copyright (C) Parity Technologies (UK) Ltd.
|
||||
// This file is part of Pezcumulus.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//! Tools for reclaiming PoV weight in teyrchain runtimes.
|
||||
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
use pezsp_externalities::ExternalitiesExt;
|
||||
|
||||
use pezsp_runtime_interface::runtime_interface;
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
use pezsp_trie::proof_size_extension::ProofSizeExt;
|
||||
|
||||
pub const PROOF_RECORDING_DISABLED: u64 = u64::MAX;
|
||||
|
||||
/// Interface that provides access to the current storage proof size.
|
||||
///
|
||||
/// Should return the current storage proof size if [`ProofSizeExt`] is registered. Otherwise, needs
|
||||
/// to return u64::MAX.
|
||||
#[runtime_interface]
|
||||
pub trait StorageProofSize {
|
||||
/// Returns the current storage proof size.
|
||||
fn storage_proof_size(&mut self) -> u64 {
|
||||
self.extension::<ProofSizeExt>()
|
||||
.map_or(PROOF_RECORDING_DISABLED, |e| e.storage_proof_size())
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use pezsp_core::Blake2Hasher;
|
||||
use pezsp_state_machine::TestExternalities;
|
||||
use pezsp_trie::{
|
||||
proof_size_extension::ProofSizeExt, recorder::Recorder, LayoutV1, PrefixedMemoryDB,
|
||||
TrieDBMutBuilder, TrieMut,
|
||||
};
|
||||
|
||||
use crate::{storage_proof_size, PROOF_RECORDING_DISABLED};
|
||||
|
||||
const TEST_DATA: &[(&[u8], &[u8])] = &[(b"key1", &[1; 64]), (b"key2", &[2; 64])];
|
||||
|
||||
type TestLayout = LayoutV1<pezsp_core::Blake2Hasher>;
|
||||
|
||||
fn get_prepared_test_externalities() -> (TestExternalities<Blake2Hasher>, Recorder<Blake2Hasher>)
|
||||
{
|
||||
let mut db = PrefixedMemoryDB::default();
|
||||
let mut root = Default::default();
|
||||
|
||||
{
|
||||
let mut trie = TrieDBMutBuilder::<TestLayout>::new(&mut db, &mut root).build();
|
||||
for (k, v) in TEST_DATA {
|
||||
trie.insert(k, v).expect("Inserts data");
|
||||
}
|
||||
}
|
||||
|
||||
let recorder: pezsp_trie::recorder::Recorder<Blake2Hasher> = Default::default();
|
||||
let trie_backend = pezsp_state_machine::TrieBackendBuilder::new(db, root)
|
||||
.with_recorder(recorder.clone())
|
||||
.build();
|
||||
|
||||
let mut ext: TestExternalities<Blake2Hasher> = TestExternalities::default();
|
||||
ext.backend = trie_backend;
|
||||
(ext, recorder)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn host_function_returns_size_from_recorder() {
|
||||
let (mut ext, recorder) = get_prepared_test_externalities();
|
||||
ext.register_extension(ProofSizeExt::new(recorder));
|
||||
|
||||
ext.execute_with(|| {
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), 0);
|
||||
pezsp_io::storage::get(b"key1");
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), 175);
|
||||
pezsp_io::storage::get(b"key2");
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), 275);
|
||||
pezsp_io::storage::get(b"key2");
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), 275);
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn host_function_returns_max_without_extension() {
|
||||
let (mut ext, _) = get_prepared_test_externalities();
|
||||
|
||||
ext.execute_with(|| {
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), PROOF_RECORDING_DISABLED);
|
||||
pezsp_io::storage::get(b"key1");
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), PROOF_RECORDING_DISABLED);
|
||||
pezsp_io::storage::get(b"key2");
|
||||
assert_eq!(storage_proof_size::storage_proof_size(), PROOF_RECORDING_DISABLED);
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user