Complete rebrand: Polkadot→Pezkuwi, Substrate→Bizinikiwi

- Replace PolkadotConfig with PezkuwiConfig
- Replace SubstrateConfig with BizinikiwConfig
- Rename config module files (polkadot.rs→pezkuwi.rs, substrate.rs→bizinikiwi.rs)
- Update all documentation and examples
- All 165 files updated, cargo check passes
This commit is contained in:
2025-12-21 21:42:34 +03:00
parent 99e4ee3ab8
commit 7af0bcd262
166 changed files with 2395 additions and 2395 deletions
+2 -2
View File
@@ -508,11 +508,11 @@ impl<T: Config> Stream for StorageFetchDescendantKeysStream<T> {
keys.first() == this.pagination_start_key.as_ref()
{
// Currently, Smoldot returns the "start key" as the first key in the
// input (see https://github.com/smol-dot/smoldot/issues/1692), whereas Substrate doesn't.
// input (see https://github.com/smol-dot/smoldot/issues/1692), whereas Bizinikiwi doesn't.
// We don't expect the start key to be returned either (since it was the
// last key of prev iteration), so remove it if we see it. This
// `remove()` method isn't very efficient but this will be a non
// issue with the RPC V2 APIs or if Smoldot aligns with Substrate
// issue with the RPC V2 APIs or if Smoldot aligns with Bizinikiwi
// anyway.
keys.remove(0);
}