mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
6bd93825ca
* client/authority-discovery: Rework error handling Instead of `handle_dht_events` returning a `Result<(), Error>`, return a `Poll<Error>` where `Poll::Pending` signals that there are no more events to handle and `Poll::Ready(Error)` signals that a fatal error occured. Non fatal errors are handled within `handle_dht_events` directly, thus looping in `poll` is not necessary anymore. * client/authority-discovery: Return () instead of error on termiantion * Update client/authority-discovery/src/lib.rs Co-Authored-By: André Silva <123550+andresilva@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
58 lines
2.5 KiB
Rust
58 lines
2.5 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.
|
|
|
|
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, 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),
|
|
/// Failed to sign using a specific public key.
|
|
MissingSignature(CryptoTypePublicPair),
|
|
/// Failed to sign using all public keys.
|
|
Signing,
|
|
/// Failed to register Prometheus metric.
|
|
Prometheus(prometheus_endpoint::PrometheusError),
|
|
}
|