379cb741ed
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.
91 lines
3.0 KiB
Rust
91 lines
3.0 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Pezkuwi.
|
|
|
|
// Pezkuwi is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Pezkuwi is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Pezkuwi. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
pub use pezsc_network::ReputationChange;
|
|
|
|
/// Unified annoyance cost and good behavior benefits.
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
#[allow(missing_docs)]
|
|
pub enum UnifiedReputationChange {
|
|
CostMajor(&'static str),
|
|
CostMinor(&'static str),
|
|
CostMajorRepeated(&'static str),
|
|
CostMinorRepeated(&'static str),
|
|
Malicious(&'static str),
|
|
BenefitMinorFirst(&'static str),
|
|
BenefitMinor(&'static str),
|
|
BenefitMajorFirst(&'static str),
|
|
BenefitMajor(&'static str),
|
|
}
|
|
|
|
impl UnifiedReputationChange {
|
|
/// Obtain the cost or benefit associated with
|
|
/// the enum variant.
|
|
///
|
|
/// Order of magnitude rationale:
|
|
///
|
|
/// * the peerset will not connect to a peer whose reputation is below a fixed value
|
|
/// * `max(2% *$rep, 1)` is the delta of convergence towards a reputation of 0
|
|
///
|
|
/// The whole range of an `i32` should be used, so order of magnitude of
|
|
/// something malicious should be `1<<20` (give or take).
|
|
pub const fn cost_or_benefit(&self) -> i32 {
|
|
match self {
|
|
Self::CostMinor(_) => -100_000,
|
|
Self::CostMajor(_) => -300_000,
|
|
Self::CostMinorRepeated(_) => -200_000,
|
|
Self::CostMajorRepeated(_) => -600_000,
|
|
Self::Malicious(_) => i32::MIN,
|
|
Self::BenefitMajorFirst(_) => 300_000,
|
|
Self::BenefitMajor(_) => 200_000,
|
|
Self::BenefitMinorFirst(_) => 15_000,
|
|
Self::BenefitMinor(_) => 10_000,
|
|
}
|
|
}
|
|
|
|
/// Extract the static description.
|
|
pub const fn description(&self) -> &'static str {
|
|
match self {
|
|
Self::CostMinor(description) => description,
|
|
Self::CostMajor(description) => description,
|
|
Self::CostMinorRepeated(description) => description,
|
|
Self::CostMajorRepeated(description) => description,
|
|
Self::Malicious(description) => description,
|
|
Self::BenefitMajorFirst(description) => description,
|
|
Self::BenefitMajor(description) => description,
|
|
Self::BenefitMinorFirst(description) => description,
|
|
Self::BenefitMinor(description) => description,
|
|
}
|
|
}
|
|
|
|
/// Whether the reputation change is for good behavior.
|
|
pub const fn is_benefit(&self) -> bool {
|
|
match self {
|
|
Self::BenefitMajorFirst(_) |
|
|
Self::BenefitMajor(_) |
|
|
Self::BenefitMinorFirst(_) |
|
|
Self::BenefitMinor(_) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<UnifiedReputationChange> for ReputationChange {
|
|
fn from(value: UnifiedReputationChange) -> Self {
|
|
ReputationChange::new(value.cost_or_benefit(), value.description())
|
|
}
|
|
}
|