mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 18:47:59 +00:00
e4b1aa1811
* client/network: upgrade to libp2p 0.51.0 * make discovery.rs compile * make peer_info.rs compile * changes to notifications and request-response proto * make service.rs compile * towards making request_responses.rs compile * make request_responses.rs compile * make request_responses.rs compile * fix notifications/behaviour.rs tests * fix warnings * remove old code * allow deprecated code (temporary) * upgrade to libp2p 0.51.1 * add TODO for behaviour tests * return empty vec if peer_id is absent https://github.com/paritytech/substrate/pull/13587#discussion_r1141695167 fyi: I don't really know what the old behaviour was. * update comment to reflect new defaults Closes #13338 * Revert "update comment to reflect new defaults" This reverts commit 7a981abd69308e9d522ec94905f181439a1b1dba. * remove config.rs (from wrong merge) * upgrade to libp2p 0.51.2 * fix formatting * use handle_pending_outbound_connection in networt_state RPC * update deps * use re-exports when we use other libp2p packages * Apply suggestions from code review Co-authored-by: Dmitry Markin <dmitry@markin.tech> * format code * handle potential errors in network_state RPC * only update libp2p crate * update libp2p-core * fix docs * use libp2p-identity instead of libp2p where it's possible. libp2p-identity is much smaller, hence makes sense to use it instead of larger libp2p crate. * Update client/network/src/discovery.rs Co-authored-by: Aaro Altonen <48052676+altonen@users.noreply.github.com> * update Cargo.lock * add comment for per_connection_event_buffer_size current value is somewhat arbitrary and needs to be tweaked depending on memory usage and network worker sleep stats. * fix link format * update Cargo.lock * upgrade to libp2p 0.51.3 * deprecate mplex * Revert "deprecate mplex" This reverts commit 9e25820e706e464a0e962a8604861fcb2a7641eb. * Revert "upgrade to libp2p 0.51.3" This reverts commit 6544dd4138e2f89517bd7c7281fc78a638ec7040. * use new libp2p version in `statement` crate * pin version temporarily * libp2p 0.51.3 * deprecate mplex * deprecate legacy noise handshake * fix build error * update libp2p-identity * enable libp2p-identity:ed25519 feature in sc-consensus * enable ed25519 for peerset as well --------- Co-authored-by: Dmitry Markin <dmitry@markin.tech> Co-authored-by: Aaro Altonen <48052676+altonen@users.noreply.github.com> Co-authored-by: parity-processbot <>
79 lines
2.8 KiB
Rust
79 lines
2.8 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 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.
|
|
|
|
/// AuthorityDiscovery Result.
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
/// Error type for the authority discovery module.
|
|
#[derive(Debug, thiserror::Error)]
|
|
#[allow(missing_docs)]
|
|
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::DecodingError),
|
|
|
|
#[error("Failed to sign: {0}.")]
|
|
CannotSign(String),
|
|
|
|
#[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,
|
|
|
|
#[error("Unable to fetch best block.")]
|
|
BestBlockFetchingError,
|
|
}
|