mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 14:11:02 +00:00
b20f83c18f
* Move `MultiaddrWithPeerId` and related parsing functions into `sc-network-common`, remove dependency on `sc-network` from `sc-chain-spec` * Remove dependency on `sc-network` from `sc-offchain` * Remove dependency on `sc-network` from `sc-network-gossip`
80 lines
2.9 KiB
Rust
80 lines
2.9 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2019-2022 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
|
|
|
// This program 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.
|
|
|
|
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
//! Authority discovery errors.
|
|
|
|
use sp_core::crypto::CryptoTypePublicPair;
|
|
|
|
/// AuthorityDiscovery Result.
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
/// Error type for the authority discovery module.
|
|
#[derive(Debug, thiserror::Error)]
|
|
pub enum Error {
|
|
#[error("Received dht value found event with records with different keys.")]
|
|
ReceivingDhtValueFoundEventWithDifferentKeys,
|
|
|
|
#[error("Received dht value found event with no records.")]
|
|
ReceivingDhtValueFoundEventWithNoRecords,
|
|
|
|
#[error("Failed to verify a dht payload with the given signature.")]
|
|
VerifyingDhtPayload,
|
|
|
|
#[error("Failed to hash the authority id to be used as a dht key.")]
|
|
HashingAuthorityId(#[from] libp2p::core::multiaddr::multihash::Error),
|
|
|
|
#[error("Failed calling into the Substrate runtime: {0}")]
|
|
CallingRuntime(#[from] sp_blockchain::Error),
|
|
|
|
#[error("Received a dht record with a key that does not match any in-flight awaited keys.")]
|
|
ReceivingUnexpectedRecord,
|
|
|
|
#[error("Failed to encode a protobuf payload.")]
|
|
EncodingProto(#[from] prost::EncodeError),
|
|
|
|
#[error("Failed to decode a protobuf payload.")]
|
|
DecodingProto(#[from] prost::DecodeError),
|
|
|
|
#[error("Failed to encode or decode scale payload.")]
|
|
EncodingDecodingScale(#[from] codec::Error),
|
|
|
|
#[error("Failed to parse a libp2p multi address.")]
|
|
ParsingMultiaddress(#[from] libp2p::core::multiaddr::Error),
|
|
|
|
#[error("Failed to parse a libp2p key.")]
|
|
ParsingLibp2pIdentity(#[from] libp2p::identity::error::DecodingError),
|
|
|
|
#[error("Failed to sign using a specific public key.")]
|
|
MissingSignature(CryptoTypePublicPair),
|
|
|
|
#[error("Failed to sign using all public keys.")]
|
|
Signing,
|
|
|
|
#[error("Failed to register Prometheus metric.")]
|
|
Prometheus(#[from] prometheus_endpoint::PrometheusError),
|
|
|
|
#[error("Received authority record that contains addresses with multiple peer ids")]
|
|
ReceivingDhtValueFoundEventWithDifferentPeerIds,
|
|
|
|
#[error("Received authority record without any addresses having a peer id")]
|
|
ReceivingDhtValueFoundEventWithNoPeerIds,
|
|
|
|
#[error("Received authority record without a valid signature for the remote peer id.")]
|
|
MissingPeerIdSignature,
|
|
}
|