mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 21:58:06 +00:00
57387ef585
* Update libp2p. Add support for ed25519 node (network) keys. * Update networking to the changes from https://github.com/libp2p/rust-libp2p/pull/972. * Add support for using ed25519 keys for libp2p networking. * Add support for reading libp2p secret keys from (external) files. * Adapt to changes from https://github.com/libp2p/rust-libp2p/pull/992 * More tests. * Cosmetics * Deduplicate tests. * Remove quickcheck from tests that don't use extra random inputs. * Remove quickcheck. * Swap new/default impls for NetworkConfiguration. * Use libp2p-0.5.0 from crates.io. * Post-rebase update. * Remove unnecessary wildcard pattern. * Combine two overlapping tests.
56 lines
1.9 KiB
Rust
56 lines
1.9 KiB
Rust
// Copyright 2017-2019 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/>.
|
|
|
|
#![warn(unused_extern_crates)]
|
|
#![warn(missing_docs)]
|
|
|
|
//! Substrate-specific P2P networking: synchronizing blocks, propagating BFT messages.
|
|
//! Allows attachment of an optional subprotocol for chain-specific requests.
|
|
|
|
mod service;
|
|
mod sync;
|
|
#[macro_use]
|
|
mod protocol;
|
|
mod chain;
|
|
mod blocks;
|
|
mod on_demand;
|
|
mod util;
|
|
pub mod config;
|
|
pub mod consensus_gossip;
|
|
pub mod error;
|
|
pub mod message;
|
|
pub mod specialization;
|
|
|
|
#[cfg(any(test, feature = "test-helpers"))]
|
|
pub mod test;
|
|
|
|
pub use chain::Client as ClientHandle;
|
|
pub use service::{Service, FetchFuture, TransactionPool, ManageNetwork, NetworkMsg, SyncProvider, ExHashT};
|
|
pub use protocol::{ProtocolStatus, PeerInfo, Context};
|
|
pub use sync::{Status as SyncStatus, SyncState};
|
|
pub use network_libp2p::{
|
|
identity, multiaddr,
|
|
NodeIndex, ProtocolId, Severity, Multiaddr,
|
|
NetworkState, NetworkStatePeer, NetworkStateNotConnectedPeer, NetworkStatePeerEndpoint,
|
|
NodeKeyConfig, Secret, Secp256k1Secret, Ed25519Secret,
|
|
build_multiaddr, PeerId, PublicKey
|
|
};
|
|
pub use message::{generic as generic_message, RequestId, Status as StatusMessage, ConsensusEngineId};
|
|
pub use error::Error;
|
|
pub use on_demand::{OnDemand, OnDemandService, RemoteResponse};
|
|
#[doc(hidden)]
|
|
pub use runtime_primitives::traits::Block as BlockT;
|