mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
50 lines
2.2 KiB
Rust
50 lines
2.2 KiB
Rust
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Authority discovery errors.
|
|
|
|
/// AuthorityDiscovery Result.
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
/// Error type for the authority discovery module.
|
|
#[derive(Debug, derive_more::Display, derive_more::From)]
|
|
pub enum Error {
|
|
/// Received dht value found event with records with different keys.
|
|
ReceivingDhtValueFoundEventWithDifferentKeys,
|
|
/// Received dht value found event with no records.
|
|
ReceivingDhtValueFoundEventWithNoRecords,
|
|
/// Failed to verify a dht payload with the given signature.
|
|
VerifyingDhtPayload,
|
|
/// Failed to hash the authority id to be used as a dht key.
|
|
HashingAuthorityId(libp2p::core::multiaddr::multihash::EncodeError),
|
|
/// Failed calling into the Substrate runtime.
|
|
CallingRuntime(sp_blockchain::Error),
|
|
/// From the Dht we only get the hashed authority id. In order to retrieve the actual authority id and to ensure it
|
|
/// is actually an authority, we match the hash against the hash of the authority id of all other authorities. This
|
|
/// error is the result of the above failing.
|
|
MatchingHashedAuthorityIdWithAuthorityId,
|
|
/// Failed to set the authority discovery peerset priority group in the peerset module.
|
|
SettingPeersetPriorityGroup(String),
|
|
/// Failed to encode a protobuf payload.
|
|
EncodingProto(prost::EncodeError),
|
|
/// Failed to decode a protobuf payload.
|
|
DecodingProto(prost::DecodeError),
|
|
/// Failed to encode or decode scale payload
|
|
EncodingDecodingScale(codec::Error),
|
|
/// Failed to parse a libp2p multi address.
|
|
ParsingMultiaddress(libp2p::core::multiaddr::Error),
|
|
}
|