)
pub fn fully_verifying_import_queue(
client: Arc,
block_import: I,
diff --git a/pezcumulus/client/consensus/common/src/import_queue.rs b/pezcumulus/client/consensus/common/src/import_queue.rs
index 53898858..1941131e 100644
--- a/pezcumulus/client/consensus/common/src/import_queue.rs
+++ b/pezcumulus/client/consensus/common/src/import_queue.rs
@@ -31,7 +31,7 @@
//! At the time of writing, the inherent and consensus checks in most Pezcumulus runtimes
//! are only performed during teyrchain validation, not full node block execution.
//!
-//! See for details.
+//! See for details.
use pezsp_consensus::error::Error as ConsensusError;
use pezsp_runtime::traits::Block as BlockT;
diff --git a/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs b/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs
index 346ddff5..a1c3f935 100644
--- a/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs
+++ b/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs
@@ -375,7 +375,7 @@ async fn handle_new_block_imported(
{
// HACK
//
- // Remove after https://github.com/pezkuwichain/kurdistan-sdk/issues/76 or similar is merged
+ // Remove after https://github.com/pezkuwichain/pezkuwi-sdk/issues/76 or similar is merged
if notification.origin != BlockOrigin::Own {
announce_block(notification.hash, None);
}
diff --git a/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs b/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs
index 2313d58b..4a001089 100644
--- a/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs
+++ b/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs
@@ -784,7 +784,7 @@ pub fn distribute_header(header: RelayHeader, senders: &mut Vec false,
// Channel is full. This should not happen.
// TODO: Improve error handling here
- // https://github.com/pezkuwichain/kurdistan-sdk/issues/90
+ // https://github.com/pezkuwichain/pezkuwi-sdk/issues/90
Err(error) => {
tracing::error!(target: LOG_TARGET, ?error, "Event distribution channel has reached its limit. This can lead to missed notifications.");
true
diff --git a/pezcumulus/pezpallets/collator-selection/src/lib.rs b/pezcumulus/pezpallets/collator-selection/src/lib.rs
index d1d64a68..a0e7d21d 100644
--- a/pezcumulus/pezpallets/collator-selection/src/lib.rs
+++ b/pezcumulus/pezpallets/collator-selection/src/lib.rs
@@ -77,7 +77,7 @@
//! To initiate rewards, an ED needs to be transferred to the pot address.
//!
//! Note: Eventually the Pot distribution may be modified as discussed in [this
-//! issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/187#issuecomment-810481073).
+//! issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/187#issuecomment-810481073).
#![cfg_attr(not(feature = "std"), no_std)]
diff --git a/pezcumulus/pezpallets/collator-selection/src/migration.rs b/pezcumulus/pezpallets/collator-selection/src/migration.rs
index 05bee59a..024da0e7 100644
--- a/pezcumulus/pezpallets/collator-selection/src/migration.rs
+++ b/pezcumulus/pezpallets/collator-selection/src/migration.rs
@@ -22,7 +22,7 @@ use alloc::vec::Vec;
use log;
use pezframe_support::traits::{OnRuntimeUpgrade, UncheckedOnRuntimeUpgrade};
-/// Migrate to v2. Should have been part of .
+/// Migrate to v2. Should have been part of .
pub mod v2 {
use super::*;
use pezframe_support::{
diff --git a/pezcumulus/pezpallets/dmp-queue/src/lib.rs b/pezcumulus/pezpallets/dmp-queue/src/lib.rs
index 01c05999..ef165d05 100644
--- a/pezcumulus/pezpallets/dmp-queue/src/lib.rs
+++ b/pezcumulus/pezpallets/dmp-queue/src/lib.rs
@@ -42,7 +42,7 @@ pub type MaxDmpMessageLenOf =
#[pezframe_support::pezpallet]
#[deprecated(
- note = "`pezcumulus-pezpallet-dmp-queue` will be removed after November 2024. It can be removed once its lazy migration completed. See ."
+ note = "`pezcumulus-pezpallet-dmp-queue` will be removed after November 2024. It can be removed once its lazy migration completed. See ."
)]
pub mod pezpallet {
use super::*;
diff --git a/pezcumulus/pezpallets/teyrchain-system/src/lib.rs b/pezcumulus/pezpallets/teyrchain-system/src/lib.rs
index e4112c79..86a734eb 100644
--- a/pezcumulus/pezpallets/teyrchain-system/src/lib.rs
+++ b/pezcumulus/pezpallets/teyrchain-system/src/lib.rs
@@ -636,7 +636,7 @@ pub mod pezpallet {
total_weight += Self::maybe_drop_included_ancestors(&relay_state_proof, capacity);
// Deposit a log indicating the relay-parent storage root.
// TODO: remove this in favor of the relay-parent's hash after
- // https://github.com/pezkuwichain/kurdistan-sdk/issues/92
+ // https://github.com/pezkuwichain/pezkuwi-sdk/issues/92
pezframe_system::Pezpallet::::deposit_log(
pezcumulus_primitives_core::rpsr_digest::relay_parent_storage_root_item(
vfp.relay_parent_storage_root,
@@ -1010,7 +1010,7 @@ pub mod pezpallet {
#[pezpallet::genesis_build]
impl BuildGenesisConfig for GenesisConfig {
fn build(&self) {
- // TODO: Remove after https://github.com/pezkuwichain/kurdistan-sdk/issues/93
+ // TODO: Remove after https://github.com/pezkuwichain/pezkuwi-sdk/issues/93
pezsp_io::storage::set(b":c", &[]);
}
}
diff --git a/pezcumulus/pezpallets/teyrchain-system/src/tests.rs b/pezcumulus/pezpallets/teyrchain-system/src/tests.rs
index 72173b0c..3fcf904c 100755
--- a/pezcumulus/pezpallets/teyrchain-system/src/tests.rs
+++ b/pezcumulus/pezpallets/teyrchain-system/src/tests.rs
@@ -1195,7 +1195,7 @@ fn message_queue_chain() {
// the types are nominally different, they have the same structure and computation of the
// new head doesn't differ.
//
- // These cases are taken from https://github.com/pezkuwichain/kurdistan-sdk/issues/173
+ // These cases are taken from https://github.com/pezkuwichain/pezkuwi-sdk/issues/173
assert_eq!(
MessageQueueChain::default()
.extend_downward(&InboundDownwardMessage { sent_at: 2, msg: vec![1, 2, 3] })
diff --git a/pezcumulus/primitives/core/src/lib.rs b/pezcumulus/primitives/core/src/lib.rs
index 93a8f9e4..ac000f32 100644
--- a/pezcumulus/primitives/core/src/lib.rs
+++ b/pezcumulus/primitives/core/src/lib.rs
@@ -365,8 +365,8 @@ pub fn extract_relay_parent(digest: &Digest) -> Option {
/// Utilities for handling the relay-parent storage root as a digest item.
///
/// This is not intended to be part of the public API, as it is a workaround for
-/// via
-/// .
+/// via
+/// .
///
/// Runtimes using the teyrchain-system pezpallet are expected to produce this digest item,
/// but will stop as soon as they are able to provide the relay-parent hash directly.
diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs
index b308cc1d..b7b7a2e1 100644
--- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs
+++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs
@@ -259,7 +259,7 @@ parameter_types! {
pub const ApprovalDeposit: Balance = EXISTENTIAL_DEPOSIT;
pub const AssetsStringLimit: u32 = 50;
/// Key = 32 bytes, Value = 36 bytes (32+1+1+1+1)
- // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271
+ // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271
pub const MetadataDepositBase: Balance = deposit(1, 68);
pub const MetadataDepositPerByte: Balance = deposit(0, 1);
}
@@ -1437,7 +1437,7 @@ parameter_types! {
/// Migration to initialize storage versions for pallets added after genesis.
///
-/// This is now done automatically (see ),
+/// This is now done automatically (see ),
/// but some pallets had made it in and had storage set in them for this teyrchain before it was
/// merged.
pub struct InitStorageVersions;
diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs
index 7e160984..72d0ebee 100644
--- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs
+++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs
@@ -285,7 +285,7 @@ parameter_types! {
pub const ApprovalDeposit: Balance = EXISTENTIAL_DEPOSIT;
pub const AssetsStringLimit: u32 = 50;
/// Key = 32 bytes, Value = 36 bytes (32+1+1+1+1)
- // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271
+ // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271
pub const MetadataDepositBase: Balance = deposit(1, 68);
pub const MetadataDepositPerByte: Balance = deposit(0, 1);
}
@@ -1566,7 +1566,7 @@ impl pezframe_support::traits::OnRuntimeUpgrade for DeleteUndecodableStorage {
/// Migration to initialize storage versions for pallets added after genesis.
///
/// Ideally this would be done automatically (see
-/// ), but it probably won't be ready for some
+/// ), but it probably won't be ready for some
/// time and it's beneficial to get try-runtime-cli on-runtime-upgrade checks into the CI, so we're
/// doing it manually.
pub struct InitStorageVersions;
diff --git a/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs b/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs
index dfd63e6f..e3e464e5 100644
--- a/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs
+++ b/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs
@@ -26,7 +26,7 @@
/// For new assets, the reserve location(s) and teleport status need to be explicitly configured by
/// the asset's `Owner`.
///
-/// See for more info.
+/// See for more info.
pub mod foreign_assets_reserves {
use crate::*;
use codec::{Decode, Encode, MaxEncodedLen};
diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs
index f3069c0a..be2532f9 100644
--- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs
+++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs
@@ -208,7 +208,7 @@ parameter_types! {
/// Migration to initialize storage versions for pallets added after genesis.
///
/// Ideally this would be done automatically (see
-/// ), but it probably won't be ready for some
+/// ), but it probably won't be ready for some
/// time and it's beneficial to get try-runtime-cli on-runtime-upgrade checks into the CI, so we're
/// doing it manually.
pub struct InitStorageVersions;
diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs
index d4194a3e..5a292432 100644
--- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs
+++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs
@@ -196,7 +196,7 @@ parameter_types! {
/// Migration to initialize storage versions for pallets added after genesis.
///
/// Ideally this would be done automatically (see
-/// ), but it probably won't be ready for some
+/// ), but it probably won't be ready for some
/// time and it's beneficial to get try-runtime-cli on-runtime-upgrade checks into the CI, so we're
/// doing it manually.
pub struct InitStorageVersions;
diff --git a/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs b/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs
index 9a4861f2..fa6337ed 100644
--- a/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs
+++ b/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs
@@ -175,7 +175,7 @@ parameter_types! {
.build_or_panic();
pub const SS58Prefix: u8 = 42;
// We assume the whole teyrchain state fits into the trie cache
- // Numbers are from
+ // Numbers are from
pub const InMemoryDbWeight: RuntimeDbWeight = RuntimeDbWeight {
read: 9_000 * constants::WEIGHT_REF_TIME_PER_NANOS,
write: 28_000 * constants::WEIGHT_REF_TIME_PER_NANOS,
diff --git a/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs b/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs
index 7597b3f1..d137a706 100644
--- a/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs
+++ b/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs
@@ -362,7 +362,7 @@ pub async fn submit_extrinsic_and_wait_for_finalization_success =
session_info.validator_groups.iter().map(|v| v.len()).collect();
// insta-approve candidates on low-node testnets:
- // cf. https://github.com/pezkuwichain/kurdistan-sdk/issues/134
+ // cf. https://github.com/pezkuwichain/pezkuwi-sdk/issues/134
let num_candidates = included_candidates.len();
let approved_bitfield = {
if needed_approvals == 0 {
diff --git a/pezkuwi/node/core/approval-voting/src/lib.rs b/pezkuwi/node/core/approval-voting/src/lib.rs
index 6bd53da5..9ee1f6ee 100644
--- a/pezkuwi/node/core/approval-voting/src/lib.rs
+++ b/pezkuwi/node/core/approval-voting/src/lib.rs
@@ -1552,7 +1552,7 @@ pub async fn start_approval_worker<
// of actions are generated by handling a single action.
//
// This particular problem statement is specified in issue 3311:
-// https://github.com/pezkuwichain/kurdistan-sdk/issues/142
+// https://github.com/pezkuwichain/pezkuwi-sdk/issues/142
//
// returns `true` if any of the actions was a `Conclude` command.
#[overseer::contextbounds(ApprovalVoting, prefix = self::overseer)]
diff --git a/pezkuwi/node/core/approval-voting/src/ops.rs b/pezkuwi/node/core/approval-voting/src/ops.rs
index 4c5be4fa..cbf0ce28 100644
--- a/pezkuwi/node/core/approval-voting/src/ops.rs
+++ b/pezkuwi/node/core/approval-voting/src/ops.rs
@@ -175,7 +175,7 @@ pub fn canonicalize(
// due to the fork pruning, this range actually might go too far above where our actual highest
// block is, if a relatively short fork is canonicalized.
- // TODO https://github.com/pezkuwichain/kurdistan-sdk/issues/143
+ // TODO https://github.com/pezkuwichain/pezkuwi-sdk/issues/143
let new_range = StoredBlockRange(canon_number + 1, std::cmp::max(range.1, canon_number + 2));
overlay_db.write_stored_block_range(new_range);
diff --git a/pezkuwi/node/core/av-store/src/lib.rs b/pezkuwi/node/core/av-store/src/lib.rs
index b5c62d82..3f351c99 100644
--- a/pezkuwi/node/core/av-store/src/lib.rs
+++ b/pezkuwi/node/core/av-store/src/lib.rs
@@ -647,7 +647,7 @@ async fn run_iteration(
// Start prune-all on a separate thread, so that in the case when the operation takes
// longer than expected we don't keep the whole subsystem blocked.
-// See: https://github.com/pezkuwichain/kurdistan-sdk/issues/170 for more details.
+// See: https://github.com/pezkuwichain/pezkuwi-sdk/issues/170 for more details.
#[overseer::contextbounds(AvailabilityStore, prefix = self::overseer)]
async fn start_prune_all(
ctx: &mut Context,
diff --git a/pezkuwi/node/core/bitfield-signing/src/lib.rs b/pezkuwi/node/core/bitfield-signing/src/lib.rs
index 6f4996ba..f7546c51 100644
--- a/pezkuwi/node/core/bitfield-signing/src/lib.rs
+++ b/pezkuwi/node/core/bitfield-signing/src/lib.rs
@@ -49,7 +49,7 @@ mod tests;
const SPAWNED_TASK_DELAY: Duration = Duration::from_millis(1500);
const LOG_TARGET: &str = "teyrchain::bitfield-signing";
-// TODO: use `fatality` (https://github.com/pezkuwichain/kurdistan-sdk/issues/158).
+// TODO: use `fatality` (https://github.com/pezkuwichain/pezkuwi-sdk/issues/158).
/// Errors we may encounter in the course of executing the `BitfieldSigningSubsystem`.
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
diff --git a/pezkuwi/node/core/dispute-coordinator/src/initialized.rs b/pezkuwi/node/core/dispute-coordinator/src/initialized.rs
index 8f164ff4..11b54438 100644
--- a/pezkuwi/node/core/dispute-coordinator/src/initialized.rs
+++ b/pezkuwi/node/core/dispute-coordinator/src/initialized.rs
@@ -114,7 +114,7 @@ pub(crate) struct Initialized {
/// blocks) we will be too slow importing all votes from unfinalized chains on startup
/// (dispute-coordinator gets killed because of unresponsiveness).
///
- /// https://github.com/pezkuwichain/kurdistan-sdk/issues/168
+ /// https://github.com/pezkuwichain/pezkuwi-sdk/issues/168
///
/// To resolve this, we limit the amount of votes imported at once to
/// `CHAIN_IMPORT_MAX_BATCH_SIZE` and put the rest here for later processing.
@@ -771,7 +771,7 @@ impl Initialized {
.handle_import_statements(
ctx,
overlay_db,
- // TODO
+ // TODO
MaybeCandidateReceipt::AssumeBackingVotePresent(candidate_hash),
session,
statements,
diff --git a/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs b/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs
index d9672152..ae205679 100644
--- a/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs
+++ b/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs
@@ -221,7 +221,7 @@ fn partitioning_happy_case() {
// achieved with or without the 'help' of a double vote (a validator voting for and against at the
// same time). This makes the test a bit pointless but anyway I'm leaving it here to make this
// decision explicit and have the test code ready in case this behavior needs to be further tested
-// in the future. Link to the PR with the discussions: https://github.com/pezkuwichain/kurdistan-sdk/issues/177
+// in the future. Link to the PR with the discussions: https://github.com/pezkuwichain/pezkuwi-sdk/issues/177
#[test]
fn partitioning_doubled_onchain_vote() {
let mut input = BTreeMap::<(SessionIndex, CandidateHash), DisputeStatus>::new();
diff --git a/pezkuwi/node/core/provisioner/src/lib.rs b/pezkuwi/node/core/provisioner/src/lib.rs
index 48cabf02..78738798 100644
--- a/pezkuwi/node/core/provisioner/src/lib.rs
+++ b/pezkuwi/node/core/provisioner/src/lib.rs
@@ -416,7 +416,7 @@ fn note_provisionable_data(
// parablocks once they are included. But we can do slightly better by
// allowing disagreeing backers to record their disagreement and initiate a
// dispute once the parablock in question has been included. This potential
- // change is tracked by: https://github.com/pezkuwichain/kurdistan-sdk/issues/140
+ // change is tracked by: https://github.com/pezkuwichain/pezkuwi-sdk/issues/140
ProvisionableData::Dispute(_, _) => {},
}
}
diff --git a/pezkuwi/node/core/pvf/README.md b/pezkuwi/node/core/pvf/README.md
index a18a2e3a..66882fed 100644
--- a/pezkuwi/node/core/pvf/README.md
+++ b/pezkuwi/node/core/pvf/README.md
@@ -43,5 +43,5 @@ another popular persistent shell, mosh, it allows scrollback.
[impl-guide]: https://docs.pezkuwichain.io/sdk/book/pvf-prechecking.html#summary
[glossary]: https://docs.pezkuwichain.io/sdk/book/glossary.html
-[testing]: https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/doc/testing.md
+[testing]: https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/doc/testing.md
[et]: https://github.com/MisterTea/EternalTerminal
diff --git a/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs b/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs
index cdb6f5b9..bc88a346 100644
--- a/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs
+++ b/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs
@@ -34,7 +34,7 @@
//! reasons.
//!
//! Considering `io_uring`'s status discussed above, and that it very likely would get detected
-//! either by our [static analysis](https://github.com/pezkuwichain/kurdistan-sdk/issues/106) or by
+//! either by our [static analysis](https://github.com/pezkuwichain/pezkuwi-sdk/issues/106) or by
//! testing, we think it is safe to block it.
//!
//! ## Consensus analysis
diff --git a/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs b/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs
index b3368aba..e284dd97 100644
--- a/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs
+++ b/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs
@@ -24,7 +24,7 @@
//!
//! Currently we are only logging these for the purposes of gathering data. In the future, we may
//! use these stats to reject PVFs during pre-checking. See
-//! for more
+//! for more
//! background.
/// Module for the memory tracker. The memory tracker runs in its own thread, where it polls memory
diff --git a/pezkuwi/node/core/runtime-api/src/lib.rs b/pezkuwi/node/core/runtime-api/src/lib.rs
index 1a17ceb4..f2967b9a 100644
--- a/pezkuwi/node/core/runtime-api/src/lib.rs
+++ b/pezkuwi/node/core/runtime-api/src/lib.rs
@@ -394,7 +394,7 @@ where
let metrics = self.metrics.clone();
let (sender, receiver) = oneshot::channel();
- // TODO: make the cache great again https://github.com/pezkuwichain/kurdistan-sdk/issues/159
+ // TODO: make the cache great again https://github.com/pezkuwichain/pezkuwi-sdk/issues/159
let request = match self.query_cache(relay_parent, request) {
Some(request) => request,
None => return,
diff --git a/pezkuwi/node/gum/README.md b/pezkuwi/node/gum/README.md
index 83a2990b..685b6e63 100644
--- a/pezkuwi/node/gum/README.md
+++ b/pezkuwi/node/gum/README.md
@@ -31,7 +31,7 @@ automatically do so.
Related issues:
-*
+*
### Decision
diff --git a/pezkuwi/node/network/approval-distribution/src/tests.rs b/pezkuwi/node/network/approval-distribution/src/tests.rs
index 43fe2977..b57a19c8 100644
--- a/pezkuwi/node/network/approval-distribution/src/tests.rs
+++ b/pezkuwi/node/network/approval-distribution/src/tests.rs
@@ -678,7 +678,7 @@ fn delay_reputation_change() {
);
}
-///
+///
///
/// 1. Send a view update that removes block B from their view.
/// 2. Send a message from B that they incur `COST_UNEXPECTED_MESSAGE` for, but then they receive
@@ -782,7 +782,7 @@ fn spam_attack_results_in_negative_reputation_change() {
/// Upon receiving them, they both will try to send the message each other.
/// This test makes sure they will not punish each other for such duplicate messages.
///
-/// See .
+/// See .
#[test]
fn peer_sending_us_the_same_we_just_sent_them_is_ok() {
let parent_hash = Hash::repeat_byte(0xFF);
@@ -2361,7 +2361,7 @@ fn sends_assignments_even_when_state_is_approved_v2() {
);
}
-///
+///
///
/// 1. Receive remote peer view update with an unknown head
/// 2. Receive assignments for that unknown head
@@ -4253,7 +4253,7 @@ fn subsystem_rejects_wrong_claimed_assignments() {
/// assignment and Delay tranche assignments land on the same candidate. The delay tranche0 can be
/// safely ignored and we don't need to gossip it however, the compact tranche0 assignment should be
/// gossiped, because other candidates are included in it, this test makes sure this invariant is
-/// upheld, see https://github.com/pezkuwichain/kurdistan-sdk/issues/172#discussion_r557628699, for
+/// upheld, see https://github.com/pezkuwichain/pezkuwi-sdk/issues/172#discussion_r557628699, for
/// this edge case.
#[test]
fn subsystem_accepts_tranche0_duplicate_assignments() {
diff --git a/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs b/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs
index 0a7376f8..05958d59 100644
--- a/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs
+++ b/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs
@@ -85,7 +85,7 @@ const COST_APPARENT_FLOOD: Rep =
///
/// This is to protect from a single slow validator preventing collations from happening.
///
-/// For considerations on this value, see: https://github.com/pezkuwichain/kurdistan-sdk/issues/148
+/// For considerations on this value, see: https://github.com/pezkuwichain/pezkuwi-sdk/issues/148
const MAX_UNSHARED_UPLOAD_TIME: Duration = Duration::from_millis(150);
/// A timeout for resetting validators' interests in collations.
diff --git a/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs b/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs
index b4fa8347..dd35746b 100644
--- a/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs
+++ b/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs
@@ -2366,7 +2366,7 @@ async fn handle_collation_fetch_response(
"Request timed out"
);
// For now we don't want to change reputation on timeout, to mitigate issues like
- // this: https://github.com/pezkuwichain/kurdistan-sdk/issues/152
+ // this: https://github.com/pezkuwichain/pezkuwi-sdk/issues/152
Err(None)
},
Err(RequestError::NetworkError(err)) => {
diff --git a/pezkuwi/node/network/gossip-support/src/lib.rs b/pezkuwi/node/network/gossip-support/src/lib.rs
index 448563d5..c54f9eb0 100644
--- a/pezkuwi/node/network/gossip-support/src/lib.rs
+++ b/pezkuwi/node/network/gossip-support/src/lib.rs
@@ -86,7 +86,7 @@ const TRY_RERESOLVE_AUTHORITIES: Duration = Duration::from_secs(2);
/// populated). Authority discovery on Kusama takes around 8 minutes, so warning after 10 minutes
/// should be fine:
///
-/// https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/client/authority-discovery/src/lib.rs#L88
+/// https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/client/authority-discovery/src/lib.rs#L88
const LOW_CONNECTIVITY_WARN_DELAY: Duration = Duration::from_secs(600);
/// If connectivity is lower than this in percent, issue warning in logs.
@@ -452,7 +452,7 @@ where
// First `maxValidators` entries are the teyrchain validators. We'll check
// if our index is in this set to avoid searching for the keys.
- // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148
+ // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148
if *index < teyrchain_validators_this_session {
gum::trace!(target: LOG_TARGET, "We are now a teyrchain validator",);
self.metrics.on_is_teyrchain_validator();
@@ -796,7 +796,7 @@ async fn update_gossip_topology(
let random_seed = {
let (tx, rx) = oneshot::channel();
- // TODO https://github.com/pezkuwichain/kurdistan-sdk/issues/156:
+ // TODO https://github.com/pezkuwichain/pezkuwi-sdk/issues/156:
// get the random seed from the `SessionInfo` instead.
sender
.send_message(RuntimeApiMessage::Request(
diff --git a/pezkuwi/node/network/protocol/src/request_response/mod.rs b/pezkuwi/node/network/protocol/src/request_response/mod.rs
index 6789d704..d0e1e1ba 100644
--- a/pezkuwi/node/network/protocol/src/request_response/mod.rs
+++ b/pezkuwi/node/network/protocol/src/request_response/mod.rs
@@ -137,7 +137,7 @@ const POV_REQUEST_TIMEOUT_CONNECTED: Duration = Duration::from_millis(2000);
/// We supply leniency because there are often large candidates and asynchronous
/// backing allows them to be included over a longer window of time. Exponential back-off
/// up to a maximum of 10 seconds would be ideal, but isn't supported by the
-/// infrastructure here yet: see https://github.com/pezkuwichain/kurdistan-sdk/issues/164
+/// infrastructure here yet: see https://github.com/pezkuwichain/pezkuwi-sdk/issues/164
const ATTESTED_CANDIDATE_TIMEOUT: Duration = Duration::from_millis(2500);
/// We don't want a slow peer to slow down all the others, at the same time we want to get out the
diff --git a/pezkuwi/node/network/statement-distribution/src/v2/mod.rs b/pezkuwi/node/network/statement-distribution/src/v2/mod.rs
index 5efcfeb8..7a0caf39 100644
--- a/pezkuwi/node/network/statement-distribution/src/v2/mod.rs
+++ b/pezkuwi/node/network/statement-distribution/src/v2/mod.rs
@@ -483,7 +483,7 @@ pub(crate) async fn handle_network_update(
state.unused_topologies.insert(*new_session_index, topology);
}
- // TODO [https://github.com/pezkuwichain/kurdistan-sdk/issues/165]
+ // TODO [https://github.com/pezkuwichain/pezkuwi-sdk/issues/165]
// technically, we should account for the fact that the session topology might
// come late, and for all relay-parents with this session, send all grid peers
// any `BackedCandidateInv` messages they might need.
diff --git a/pezkuwi/node/overseer/src/lib.rs b/pezkuwi/node/overseer/src/lib.rs
index fe20d2f4..303a7e80 100644
--- a/pezkuwi/node/overseer/src/lib.rs
+++ b/pezkuwi/node/overseer/src/lib.rs
@@ -624,7 +624,7 @@ pub struct Overseer {
approval_voting_parallel: ApprovalVotingParallel,
#[subsystem(GossipSupportMessage, sends: [
NetworkBridgeTxMessage,
- NetworkBridgeRxMessage, // TODO
+ NetworkBridgeRxMessage, // TODO
RuntimeApiMessage,
ChainSelectionMessage,
ChainApiMessage,
diff --git a/pezkuwi/node/service/src/builder/mod.rs b/pezkuwi/node/service/src/builder/mod.rs
index e55b68c3..b111f706 100644
--- a/pezkuwi/node/service/src/builder/mod.rs
+++ b/pezkuwi/node/service/src/builder/mod.rs
@@ -794,7 +794,7 @@ where
let config = pezsc_consensus_grandpa::Config {
// FIXME bizinikiwi#1578 make this available through chainspec
// Grandpa performance can be improved a bit by tuning this parameter, see:
- // https://github.com/pezkuwichain/kurdistan-sdk/issues/157
+ // https://github.com/pezkuwichain/pezkuwi-sdk/issues/157
gossip_duration: Duration::from_millis(1000),
justification_generation_period: GRANDPA_JUSTIFICATION_PERIOD,
name: Some(name),
diff --git a/pezkuwi/primitives/src/v8/mod.rs b/pezkuwi/primitives/src/v8/mod.rs
index 5dc37d59..58d1726a 100644
--- a/pezkuwi/primitives/src/v8/mod.rs
+++ b/pezkuwi/primitives/src/v8/mod.rs
@@ -2081,7 +2081,7 @@ pub mod node_features {
#[derive(Clone, Copy)]
pub enum FeatureIndex {
/// Tells if tranch0 assignments could be sent in a single certificate.
- /// Reserved for: ``
+ /// Reserved for: ``
EnableAssignmentsV2 = 0,
/// This feature enables the extension of `BackedCandidate::validator_indices` by 8 bits.
/// The value stored there represents the assumed core index where the candidates
@@ -2146,7 +2146,7 @@ pub struct SchedulerParams {
/// How many cores are managed by the coretime chain.
pub num_cores: u32,
/// Deprecated and no longer used by the runtime.
- /// Removal is tracked by .
+ /// Removal is tracked by .
#[deprecated]
pub max_availability_timeouts: u32,
/// The maximum queue size of the pay as you go module.
@@ -2159,7 +2159,7 @@ pub struct SchedulerParams {
/// The minimum amount needed to claim a slot in the spot pricing queue.
pub on_demand_base_fee: Balance,
/// Deprecated and no longer used by the runtime.
- /// Removal is tracked by .
+ /// Removal is tracked by .
#[deprecated]
pub ttl: BlockNumber,
}
diff --git a/pezkuwi/primitives/src/v9/mod.rs b/pezkuwi/primitives/src/v9/mod.rs
index 72bfe25d..aef68e93 100644
--- a/pezkuwi/primitives/src/v9/mod.rs
+++ b/pezkuwi/primitives/src/v9/mod.rs
@@ -169,7 +169,7 @@ impl From for ChunkIndex {
}
}
-// We should really get https://github.com/pezkuwichain/kurdistan-sdk/issues/133 going ..
+// We should really get https://github.com/pezkuwichain/pezkuwi-sdk/issues/133 going ..
impl From for ValidatorIndex {
fn from(n: u32) -> Self {
ValidatorIndex(n)
@@ -838,7 +838,7 @@ impl GroupRotationInfo {
pub struct ScheduledCore {
/// The ID of a para scheduled.
pub para_id: Id,
- /// DEPRECATED: see:
+ /// DEPRECATED: see:
///
/// Will be removed in a future version.
pub collator: Option,
@@ -1536,7 +1536,7 @@ pub fn effective_minimum_backing_votes(
/// Information about validator sets of a session.
///
/// NOTE: `SessionInfo` is frozen. Do not include new fields, consider creating a separate runtime
-/// API. Reasoning and further outlook [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/167).
+/// API. Reasoning and further outlook [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/167).
#[derive(Clone, Encode, Decode, RuntimeDebug, TypeInfo)]
#[cfg_attr(feature = "std", derive(PartialEq))]
pub struct SessionInfo {
diff --git a/pezkuwi/primitives/test-helpers/src/lib.rs b/pezkuwi/primitives/test-helpers/src/lib.rs
index aaca9ce4..9fe8055c 100644
--- a/pezkuwi/primitives/test-helpers/src/lib.rs
+++ b/pezkuwi/primitives/test-helpers/src/lib.rs
@@ -168,7 +168,7 @@ impl PartialOrd for CommittedCandidateReceipt {
impl Ord for CommittedCandidateReceipt {
fn cmp(&self, other: &Self) -> core::cmp::Ordering {
// TODO: compare signatures or something more sane
- // https://github.com/pezkuwichain/kurdistan-sdk/issues/132
+ // https://github.com/pezkuwichain/pezkuwi-sdk/issues/132
self.descriptor()
.para_id
.cmp(&other.descriptor().para_id)
diff --git a/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md b/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md
index 01ed2c53..f1d0bc1c 100644
--- a/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md
+++ b/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md
@@ -65,13 +65,13 @@ Note however that, because not all validators in a group have to be actual backe
the needed chunk. This in turn could lead to low throughput, as we have to wait for fetches to fail, before reaching a
validator finally having our chunk. We do rank back validators not delivering our chunk, but as backers could vary from
block to block on a perfectly legitimate basis, this is still not ideal. See issues
-[2509](https://github.com/pezkuwichain/kurdistan-sdk/issues/136) and
-[2512](https://github.com/pezkuwichain/kurdistan-sdk/issues/137) for more information.
+[2509](https://github.com/pezkuwichain/pezkuwi-sdk/issues/136) and
+[2512](https://github.com/pezkuwichain/pezkuwi-sdk/issues/137) for more information.
The current implementation also only fetches chunks for occupied cores in blocks in active leaves. This means though, if
active leaves skips a block or we are particularly slow in fetching our chunk, we might not fetch our chunk if
availability reached 2/3 fast enough (slot becomes free). This is not desirable as we would like as many validators as
-possible to have their chunk. See this [issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/138) for more details.
+possible to have their chunk. See this [issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/138) for more details.
### Serving
diff --git a/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md b/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md
index 9a256502..4198d1c6 100644
--- a/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md
+++ b/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md
@@ -19,7 +19,7 @@ not being wasted by attackers. Communicating across this trust-boundary is the m
Validation of candidates is a heavy task, and furthermore, the [`PoV`][PoV] itself is a large piece of data.
Empirically, `PoV`s are on the order of 10MB.
-> TODO: note the incremental validation function Ximin proposes at https://github.com/pezkuwichain/kurdistan-sdk/issues/130
+> TODO: note the incremental validation function Ximin proposes at https://github.com/pezkuwichain/pezkuwi-sdk/issues/130
As this network protocol serves as a bridge between collators and validators, it communicates primarily with one
subsystem on behalf of each. As a collator, this will receive messages from the [`CollationGeneration`][CG] subsystem.
diff --git a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md
index fe181f30..7ba17a72 100644
--- a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md
+++ b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md
@@ -176,7 +176,7 @@ current authority set will overlap with the ones in the previous set and will be
Still, for maximum accountability we need to make sure a previous authority set can communicate votes to the next one,
regardless of any chain: This is yet to be implemented see section "Resiliency" in dispute-distribution and
-[this](https://github.com/pezkuwichain/kurdistan-sdk/issues/144) ticket.
+[this](https://github.com/pezkuwichain/pezkuwi-sdk/issues/144) ticket.
## Coordinating Actual Dispute Participation
@@ -271,7 +271,7 @@ ordering as the priority one - by block heights of the relay parent, older block
possibility not to be able to obtain the block number of the parent when we are inserting the dispute in the queue. To
account for races, we will promote any existing participation request to the priority queue once we learn about an
including block. NOTE: this is still work in progress and is tracked by [this
-issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/161).
+issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/161).
### Abandoned Forks
@@ -468,7 +468,7 @@ finalized in the first place. Not allowing disputing already finalized blocks ac
as it massively reduces the amount of candidates that can be disputed.
This makes attempts to overwhelm the system with disputes significantly harder and counter measures way easier. We can
-limit inclusion for example (as suggested [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/162) in case of high
+limit inclusion for example (as suggested [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/162) in case of high
dispute load. Another measure we have at our disposal is that on finality lag block production will slow down,
implicitly reducing the rate of new candidates that can be disputed. Hence, the cutting-off of the unlimited candidate
supply of already finalized blocks, guarantees the necessary DoS protection and ensures we can have measures in place to
diff --git a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md
index c696013f..9bec3440 100644
--- a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md
+++ b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md
@@ -202,7 +202,7 @@ the dispute-coordinator already knows about the dispute.
Goal 3 and 4 are obviously very related and both can easily be solved via rate
limiting as we shall see below. Rate limits should already be implemented at the
-Bizinikiwi level, but [are not](https://github.com/pezkuwichain/kurdistan-sdk/issues/30)
+Bizinikiwi level, but [are not](https://github.com/pezkuwichain/pezkuwi-sdk/issues/30)
at the time of writing. But even if they were, the enforced Bizinikiwi limits would
likely not be configurable and thus would still be to high for our needs as we can
rely on the following observations:
@@ -246,7 +246,7 @@ This is probably an argument for not imposing a too low rate limit, although the
issue is more general: Even without any rate limit, if an attacker generates
disputes at a very high rate, nodes will be having trouble keeping participation
up, hence the problem should be mitigated at a [more fundamental
-layer](https://github.com/pezkuwichain/kurdistan-sdk/issues/162).
+layer](https://github.com/pezkuwichain/pezkuwi-sdk/issues/162).
For nodes that have been offline for a while, the same argument as for session
changes holds, but matters even less: We assume 2/3 of nodes to be online, so
diff --git a/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md b/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md
index 009d33e9..6b334d0a 100644
--- a/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md
+++ b/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md
@@ -11,7 +11,7 @@ limits the amount of messages sent and received to be an order of sqrt of the
validators. Our neighbors in this graph will be forwarded to the network bridge
with the `NetworkBridgeMessage::NewGossipTopology` message.
-See https://github.com/pezkuwichain/kurdistan-sdk/issues/141 for more details.
+See https://github.com/pezkuwichain/pezkuwi-sdk/issues/141 for more details.
The gossip topology is used by teyrchain distribution subsystems,
such as Bitfield Distribution, (small) Statement Distribution and
diff --git a/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md b/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md
index 12602c22..11195f48 100644
--- a/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md
+++ b/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md
@@ -430,7 +430,7 @@ Implementation of the above design covers a few additional areas that allow for
> This would guarantee determinism as different nodes can see different leaves, but this approach was leaving too
> wide of a window because of Async-Backing. Relay Parent could have been significantly in the past and it would
> give a lot of time for past session disputes to be spammed.
-1. Do not block finality for "disabled" disputes [#3358](https://github.com/pezkuwichain/kurdistan-sdk/issues/114)
+1. Do not block finality for "disabled" disputes [#3358](https://github.com/pezkuwichain/pezkuwi-sdk/issues/114)
- Emergency fix to not block finality for disputes initiated only by disabled validators
1. Re-enable small offender when approaching BZT (**Runtime**) #TODO
- When BZT limit is reached and there are more offenders to be disabled re-enable the smallest offenders to disable
diff --git a/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md b/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md
index 582f86a7..4d5bcecd 100644
--- a/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md
+++ b/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md
@@ -14,7 +14,7 @@ struct SessionInfo {
///
/// NOTE: There might be more authorities in the current session, than `validators` participating
/// in teyrchain consensus. See
- /// [`max_validators`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148)..
+ /// [`max_validators`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148)..
///
/// `SessionInfo::validators` will be limited to `max_validators` when set.
validators: Vec,
@@ -23,14 +23,14 @@ struct SessionInfo {
/// NOTE: The first `validators.len()` entries will match the corresponding validators in
/// `validators`, afterwards any remaining authorities can be found. This is any authorities not
/// participating in teyrchain consensus - see
- /// [`max_validators`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148).
+ /// [`max_validators`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148).
#[cfg_attr(feature = "std", ignore_malloc_size_of = "outside type")]
discovery_keys: Vec,
/// The assignment keys for validators.
///
/// NOTE: There might be more authorities in the current session, than validators participating
/// in teyrchain consensus. See
- /// [`max_validators`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148)..
+ /// [`max_validators`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148)..
///
/// Therefore:
/// ```ignore
diff --git a/pezkuwi/roadmap/implementers-guide/src/types/runtime.md b/pezkuwi/roadmap/implementers-guide/src/types/runtime.md
index ddd4cfb1..a996e439 100644
--- a/pezkuwi/roadmap/implementers-guide/src/types/runtime.md
+++ b/pezkuwi/roadmap/implementers-guide/src/types/runtime.md
@@ -7,7 +7,7 @@ Types used within the runtime exclusively and pervasively.
The internal-to-runtime configuration of the teyrchain host is kept in `struct HostConfiguration`. This is expected to
be altered only by governance procedures or via migrations from the Pezkuwi-SDK codebase. The latest definition of
`HostConfiguration` can be found in the project repo
-[here](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs). Each
+[here](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs). Each
parameter has got a doc comment so for any details please refer to the code.
Some related parameters in `HostConfiguration` are grouped together so that they can be managed easily. These are:
@@ -20,7 +20,7 @@ Check the definitions of these structs for further details.
### Configuration migrations
Modifying `HostConfiguration` requires a storage migration. These migrations are located in the
-[`migrations`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs)
+[`migrations`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs)
subfolder of Pezkuwi-SDK repo.
## ParaInherentData
diff --git a/pezkuwi/roadmap/teyrchains.md b/pezkuwi/roadmap/teyrchains.md
index 1338724a..79287f06 100644
--- a/pezkuwi/roadmap/teyrchains.md
+++ b/pezkuwi/roadmap/teyrchains.md
@@ -116,7 +116,7 @@ The main event loop of a collator node:
---
### Cross-chain Messaging
-https://hackmd.io/ILoQltEISP697oMYe4HbrA?view https://github.com/pezkuwichain/kurdistan-sdk/issues/163
+https://hackmd.io/ILoQltEISP697oMYe4HbrA?view https://github.com/pezkuwichain/pezkuwi-sdk/issues/163
The biggest sub-project of the teyrchains roadmap - how messages are sent between teyrchains. This involves the
state-machine ordering of incoming messages, protocols for fetching those messages, and node logic for persisting the
diff --git a/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs b/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs
index 53246c8e..90bae14d 100644
--- a/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs
+++ b/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs
@@ -403,7 +403,7 @@ impl Pezpallet {
/// Inserting arbitrarily causes a `DispatchError::DisallowedInsert` error.
// With this restriction this function allows for O(1) complexity. It could easily be lifted, if
// need be and in fact an implementation is available
- // [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/107/commits/c0c23b01fd2830910cde92c11960dad12cdff398#diff-0c85a46e448de79a5452395829986ee8747e17a857c27ab624304987d2dde8baR386).
+ // [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/107/commits/c0c23b01fd2830910cde92c11960dad12cdff398#diff-0c85a46e448de79a5452395829986ee8747e17a857c27ab624304987d2dde8baR386).
// The problem is that insertion complexity then depends on the size of the existing queue,
// which makes determining weights hard and could lead to issues like overweight blocks (at
// least in theory).
diff --git a/pezkuwi/runtime/teyrchains/src/configuration.rs b/pezkuwi/runtime/teyrchains/src/configuration.rs
index 52af1f5d..66db8316 100644
--- a/pezkuwi/runtime/teyrchains/src/configuration.rs
+++ b/pezkuwi/runtime/teyrchains/src/configuration.rs
@@ -135,7 +135,7 @@ pub struct HostConfiguration {
/// revert [`validation_upgrade_delay`](Self::validation_upgrade_delay) many blocks back and
/// still find the new code in the storage by hash.
///
- /// [#4601]: https://github.com/pezkuwichain/kurdistan-sdk/issues/151
+ /// [#4601]: https://github.com/pezkuwichain/pezkuwi-sdk/issues/151
pub validation_upgrade_delay: BlockNumber,
/// Asynchronous backing parameters.
pub async_backing_params: AsyncBackingParams,
@@ -513,20 +513,20 @@ pub mod pezpallet {
/// The in-code storage version.
///
- /// v0-v1:
- /// v1-v2:
- /// v2-v3:
- /// v3-v4:
- /// v4-v5:
- /// +
- /// +
- /// v5-v6: (remove UMP dispatch queue)
- /// v6-v7:
- /// v7-v8:
- /// v8-v9:
- /// v9-v10:
- /// v10-11:
- /// v11-12:
+ /// v0-v1:
+ /// v1-v2:
+ /// v2-v3:
+ /// v3-v4:
+ /// v4-v5:
+ /// +
+ /// +
+ /// v5-v6: (remove UMP dispatch queue)
+ /// v6-v7:
+ /// v7-v8:
+ /// v8-v9:
+ /// v9-v10:
+ /// v10-11:
+ /// v11-12:
const STORAGE_VERSION: StorageVersion = StorageVersion::new(12);
#[pezpallet::pezpallet]
diff --git a/pezkuwi/runtime/teyrchains/src/disputes.rs b/pezkuwi/runtime/teyrchains/src/disputes.rs
index 397ba4a9..ea6789ba 100644
--- a/pezkuwi/runtime/teyrchains/src/disputes.rs
+++ b/pezkuwi/runtime/teyrchains/src/disputes.rs
@@ -194,7 +194,7 @@ pub trait DisputesHandler {
) -> Result<(), ()> {
// TODO: Consider trade-of to avoid `O(n * log(n))` average lookups of `included_state`
// TODO: instead make a single pass and store the values lazily.
- // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/150
+ // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/150
let n = statement_sets.len();
statement_sets.sort_by(dispute_ordering_compare::);
@@ -893,7 +893,7 @@ impl Pezpallet {
BackersOnDisputes::::remove_prefix(to_prune, None);
// This is larger, and will be extracted to the `shared` pezpallet for more proper
- // pruning. TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/145
+ // pruning. TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/145
#[allow(deprecated)]
Included::::remove_prefix(to_prune, None);
}
diff --git a/pezkuwi/runtime/teyrchains/src/initializer.rs b/pezkuwi/runtime/teyrchains/src/initializer.rs
index 4e7a323f..612b275d 100644
--- a/pezkuwi/runtime/teyrchains/src/initializer.rs
+++ b/pezkuwi/runtime/teyrchains/src/initializer.rs
@@ -247,7 +247,7 @@ impl