mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 17:41:08 +00:00
e8f21cf0c9
* notify when an authority appears to have missed their block * Runtime API * offline tracker * Move to consensus * generating reports of offline indices * stubbed-out evaluation logic * Slashing data pathwat * usize -> u32 * Slash bad validators. * update to rhododendron 0.3 * fix compilation of polkadot-consensus * Support offline noting in checked_block * include offline reports in block authorship voting * do not vote validators offline after some time * add test for offline-tracker * fix test build * bump spec version * update wasm * Only allow validators that are possible to slash * Fix grumble * More idiomatic * New Wasm. * update rhododendron * improve logging and reduce round time exponent * format offline validators in ss58
108 lines
3.5 KiB
Rust
108 lines
3.5 KiB
Rust
// Copyright 2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Strongly typed API for light Polkadot client.
|
|
|
|
use std::sync::Arc;
|
|
use client::backend::{Backend, RemoteBackend};
|
|
use client::{Client, CallExecutor};
|
|
use codec::Decode;
|
|
use primitives::{
|
|
AccountId, Block, BlockId, Hash, Index, InherentData,
|
|
SessionKey, Timestamp, UncheckedExtrinsic,
|
|
};
|
|
use runtime::Address;
|
|
use primitives::parachain::{DutyRoster, Id as ParaId};
|
|
use {PolkadotApi, BlockBuilder, RemotePolkadotApi, Result, ErrorKind};
|
|
|
|
/// Light block builder. TODO: make this work (efficiently)
|
|
#[derive(Clone, Copy)]
|
|
pub struct LightBlockBuilder;
|
|
|
|
impl BlockBuilder for LightBlockBuilder {
|
|
fn push_extrinsic(&mut self, _xt: UncheckedExtrinsic) -> Result<()> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn bake(self) -> Result<Block> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
}
|
|
|
|
/// Remote polkadot API implementation.
|
|
pub struct RemotePolkadotApiWrapper<B: Backend<Block>, E: CallExecutor<Block>>(pub Arc<Client<B, E, Block>>);
|
|
|
|
impl<B: Backend<Block>, E: CallExecutor<Block>> PolkadotApi for RemotePolkadotApiWrapper<B, E> {
|
|
type BlockBuilder = LightBlockBuilder;
|
|
|
|
fn session_keys(&self, at: &BlockId) -> Result<Vec<SessionKey>> {
|
|
self.0.executor().call(at, "authorities", &[])
|
|
.and_then(|r| Vec::<SessionKey>::decode(&mut &r.return_data[..])
|
|
.ok_or("error decoding session keys".into()))
|
|
.map_err(Into::into)
|
|
}
|
|
|
|
fn validators(&self, _at: &BlockId) -> Result<Vec<AccountId>> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn random_seed(&self, _at: &BlockId) -> Result<Hash> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn duty_roster(&self, _at: &BlockId) -> Result<DutyRoster> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn timestamp(&self, _at: &BlockId) -> Result<Timestamp> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn evaluate_block(&self, _at: &BlockId, _block: Block) -> Result<bool> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn index(&self, _at: &BlockId, _account: AccountId) -> Result<Index> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn lookup(&self, _at: &BlockId, _address: Address) -> Result<Option<AccountId>> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn active_parachains(&self, _at: &BlockId) -> Result<Vec<ParaId>> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn parachain_code(&self, _at: &BlockId, _parachain: ParaId) -> Result<Option<Vec<u8>>> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn parachain_head(&self, _at: &BlockId, _parachain: ParaId) -> Result<Option<Vec<u8>>> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn build_block(&self, _at: &BlockId, _inherent: InherentData) -> Result<Self::BlockBuilder> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
|
|
fn inherent_extrinsics(&self, _at: &BlockId, _inherent: InherentData) -> Result<Vec<Vec<u8>>> {
|
|
Err(ErrorKind::UnknownRuntime.into())
|
|
}
|
|
}
|
|
|
|
impl<B: RemoteBackend<Block>, E: CallExecutor<Block>> RemotePolkadotApi for RemotePolkadotApiWrapper<B, E> {}
|