mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 17:01:07 +00:00
50adea6220
* Generalize BlockImport - move ImportBlock, BlockOrigin, ImportResult into shared sr-primitives - let Consensus provide and traits again - update consensus traits to latest development - implement traits on client::Client, test_client::TestClient - update RHD to use the new import_block API * Move ImportBlock into consensus-common * Send import notification in aura tests * Integrating aura into service * Make Signatures more generic * Aura Block Production with the given key * run aura on the thread pool * start at exact step start in aura * Add needed wasm blob, in leiu of better solutions. * Make API ids consistent with traits and bring upstream for sharing. * Add decrease_free_balance to Balances module * Encode `Metadata` once instead of two times * Bitops include xor * Upgrade key module. * Default pages to somewhat bigger. * Introduce upgrade key into node * Add `Created` event
47 lines
2.0 KiB
Rust
47 lines
2.0 KiB
Rust
// Copyright 2017-2018 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/>.
|
|
|
|
//! Specializations of the substrate network protocol to allow more complex forms of communication.
|
|
|
|
use ::NodeIndex;
|
|
use runtime_primitives::traits::Block as BlockT;
|
|
use protocol::Context;
|
|
|
|
/// A specialization of the substrate network protocol. Handles events and sends messages.
|
|
pub trait Specialization<B: BlockT>: Send + Sync + 'static {
|
|
/// Get the current specialization-status.
|
|
fn status(&self) -> Vec<u8>;
|
|
|
|
/// Called when a peer successfully handshakes.
|
|
fn on_connect(&mut self, ctx: &mut Context<B>, who: NodeIndex, status: ::message::Status<B>);
|
|
|
|
/// Called when a peer is disconnected. If the peer ID is unknown, it should be ignored.
|
|
fn on_disconnect(&mut self, ctx: &mut Context<B>, who: NodeIndex);
|
|
|
|
/// Called when a network-specific message arrives.
|
|
fn on_message(&mut self, ctx: &mut Context<B>, who: NodeIndex, message: &mut Option<::message::Message<B>>);
|
|
|
|
/// Called on abort.
|
|
fn on_abort(&mut self) { }
|
|
|
|
/// Called periodically to maintain peers and handle timeouts.
|
|
fn maintain_peers(&mut self, _ctx: &mut Context<B>) { }
|
|
|
|
/// Called when a block is _imported_ at the head of the chain (not during major sync).
|
|
/// Not guaranteed to be called for every block, but will be most of the after major sync.
|
|
fn on_block_imported(&mut self, _ctx: &mut Context<B>, _hash: B::Hash, _header: &B::Header) { }
|
|
}
|