mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 09:17:58 +00:00
8a0e8ea9a6
* Start * Finish!!!! * Update client/basic-authorship/src/basic_authorship.rs Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com> * Review comments Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
1178 lines
35 KiB
Rust
1178 lines
35 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2018-2021 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/>.
|
|
|
|
//! Aura (Authority-round) consensus in substrate.
|
|
//!
|
|
//! Aura works by having a list of authorities A who are expected to roughly
|
|
//! agree on the current time. Time is divided up into discrete slots of t
|
|
//! seconds each. For each slot s, the author of that slot is A[s % |A|].
|
|
//!
|
|
//! The author is allowed to issue one block but not more during that slot,
|
|
//! and it will be built upon the longest valid chain that has been seen.
|
|
//!
|
|
//! Blocks from future steps will be either deferred or rejected depending on how
|
|
//! far in the future they are.
|
|
//!
|
|
//! NOTE: Aura itself is designed to be generic over the crypto used.
|
|
#![forbid(missing_docs, unsafe_code)]
|
|
use std::{
|
|
sync::Arc, time::Duration, thread, marker::PhantomData, hash::Hash, fmt::Debug, pin::Pin,
|
|
collections::HashMap, convert::{TryFrom, TryInto},
|
|
};
|
|
|
|
use futures::prelude::*;
|
|
use parking_lot::Mutex;
|
|
use log::{debug, info, trace};
|
|
use prometheus_endpoint::Registry;
|
|
|
|
use codec::{Encode, Decode, Codec};
|
|
|
|
use sp_consensus::{
|
|
BlockImport, Environment, Proposer, CanAuthorWith, ForkChoiceStrategy, BlockImportParams,
|
|
BlockOrigin, Error as ConsensusError, SelectChain, SlotData, BlockCheckParams, ImportResult,
|
|
import_queue::{
|
|
Verifier, BasicQueue, DefaultImportQueue, BoxJustificationImport,
|
|
},
|
|
};
|
|
use sc_client_api::{backend::AuxStore, BlockOf};
|
|
use sp_blockchain::{
|
|
self, Result as CResult, well_known_cache_keys::{self, Id as CacheKeyId},
|
|
ProvideCache, HeaderBackend,
|
|
};
|
|
use sp_block_builder::BlockBuilder as BlockBuilderApi;
|
|
use sp_core::crypto::Public;
|
|
use sp_application_crypto::{AppKey, AppPublic};
|
|
use sp_runtime::{generic::{BlockId, OpaqueDigestItemId}, traits::NumberFor, Justification};
|
|
use sp_runtime::traits::{Block as BlockT, Header, DigestItemFor, Zero, Member};
|
|
use sp_api::ProvideRuntimeApi;
|
|
use sp_core::crypto::Pair;
|
|
use sp_keystore::{SyncCryptoStorePtr, SyncCryptoStore};
|
|
use sp_inherents::{InherentDataProviders, InherentData};
|
|
use sp_timestamp::{
|
|
TimestampInherentData, InherentType as TimestampInherent, InherentError as TIError
|
|
};
|
|
use sc_telemetry::{telemetry, CONSENSUS_TRACE, CONSENSUS_DEBUG, CONSENSUS_INFO};
|
|
|
|
use sc_consensus_slots::{
|
|
CheckedHeader, SlotInfo, SlotCompatible, StorageChanges, check_equivocation,
|
|
BackoffAuthoringBlocksStrategy,
|
|
};
|
|
use sp_consensus_slots::Slot;
|
|
|
|
use sp_api::ApiExt;
|
|
|
|
pub use sp_consensus_aura::{
|
|
ConsensusLog, AuraApi, AURA_ENGINE_ID,
|
|
inherents::{
|
|
InherentType as AuraInherent,
|
|
AuraInherentData, INHERENT_IDENTIFIER, InherentDataProvider,
|
|
},
|
|
};
|
|
pub use sp_consensus::SyncOracle;
|
|
pub use digests::CompatibleDigestItem;
|
|
|
|
mod digests;
|
|
|
|
type AuthorityId<P> = <P as Pair>::Public;
|
|
|
|
/// Slot duration type for Aura.
|
|
pub type SlotDuration = sc_consensus_slots::SlotDuration<u64>;
|
|
|
|
/// Get type of `SlotDuration` for Aura.
|
|
pub fn slot_duration<A, B, C>(client: &C) -> CResult<SlotDuration> where
|
|
A: Codec,
|
|
B: BlockT,
|
|
C: AuxStore + ProvideRuntimeApi<B>,
|
|
C::Api: AuraApi<B, A>,
|
|
{
|
|
SlotDuration::get_or_compute(client, |a, b| a.slot_duration(b).map_err(Into::into))
|
|
}
|
|
|
|
/// Get slot author for given block along with authorities.
|
|
fn slot_author<P: Pair>(slot: Slot, authorities: &[AuthorityId<P>]) -> Option<&AuthorityId<P>> {
|
|
if authorities.is_empty() { return None }
|
|
|
|
let idx = *slot % (authorities.len() as u64);
|
|
assert!(
|
|
idx <= usize::max_value() as u64,
|
|
"It is impossible to have a vector with length beyond the address space; qed",
|
|
);
|
|
|
|
let current_author = authorities.get(idx as usize)
|
|
.expect("authorities not empty; index constrained to list length;\
|
|
this is a valid index; qed");
|
|
|
|
Some(current_author)
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
|
struct AuraSlotCompatible;
|
|
|
|
impl SlotCompatible for AuraSlotCompatible {
|
|
fn extract_timestamp_and_slot(
|
|
&self,
|
|
data: &InherentData,
|
|
) -> Result<(TimestampInherent, AuraInherent, std::time::Duration), sp_consensus::Error> {
|
|
data.timestamp_inherent_data()
|
|
.and_then(|t| data.aura_inherent_data().map(|a| (t, a)))
|
|
.map_err(Into::into)
|
|
.map_err(sp_consensus::Error::InherentData)
|
|
.map(|(x, y)| (x, y, Default::default()))
|
|
}
|
|
}
|
|
|
|
/// Start the aura worker. The returned future should be run in a futures executor.
|
|
pub fn start_aura<B, C, SC, E, I, P, SO, CAW, BS, Error>(
|
|
slot_duration: SlotDuration,
|
|
client: Arc<C>,
|
|
select_chain: SC,
|
|
block_import: I,
|
|
env: E,
|
|
sync_oracle: SO,
|
|
inherent_data_providers: InherentDataProviders,
|
|
force_authoring: bool,
|
|
backoff_authoring_blocks: Option<BS>,
|
|
keystore: SyncCryptoStorePtr,
|
|
can_author_with: CAW,
|
|
) -> Result<impl Future<Output = ()>, sp_consensus::Error> where
|
|
B: BlockT,
|
|
C: ProvideRuntimeApi<B> + BlockOf + ProvideCache<B> + AuxStore + HeaderBackend<B> + Send + Sync,
|
|
C::Api: AuraApi<B, AuthorityId<P>>,
|
|
SC: SelectChain<B>,
|
|
E: Environment<B, Error = Error> + Send + Sync + 'static,
|
|
E::Proposer: Proposer<B, Error = Error, Transaction = sp_api::TransactionFor<C, B>>,
|
|
P: Pair + Send + Sync,
|
|
P::Public: AppPublic + Hash + Member + Encode + Decode,
|
|
P::Signature: TryFrom<Vec<u8>> + Hash + Member + Encode + Decode,
|
|
I: BlockImport<B, Transaction = sp_api::TransactionFor<C, B>> + Send + Sync + 'static,
|
|
Error: std::error::Error + Send + From<sp_consensus::Error> + 'static,
|
|
SO: SyncOracle + Send + Sync + Clone,
|
|
CAW: CanAuthorWith<B> + Send,
|
|
BS: BackoffAuthoringBlocksStrategy<NumberFor<B>> + Send + 'static,
|
|
{
|
|
let worker = AuraWorker {
|
|
client,
|
|
block_import: Arc::new(Mutex::new(block_import)),
|
|
env,
|
|
keystore,
|
|
sync_oracle: sync_oracle.clone(),
|
|
force_authoring,
|
|
backoff_authoring_blocks,
|
|
_key_type: PhantomData::<P>,
|
|
};
|
|
register_aura_inherent_data_provider(
|
|
&inherent_data_providers,
|
|
slot_duration.slot_duration()
|
|
)?;
|
|
Ok(sc_consensus_slots::start_slot_worker::<_, _, _, _, _, AuraSlotCompatible, _, _>(
|
|
slot_duration,
|
|
select_chain,
|
|
worker,
|
|
sync_oracle,
|
|
inherent_data_providers,
|
|
AuraSlotCompatible,
|
|
can_author_with,
|
|
))
|
|
}
|
|
|
|
struct AuraWorker<C, E, I, P, SO, BS> {
|
|
client: Arc<C>,
|
|
block_import: Arc<Mutex<I>>,
|
|
env: E,
|
|
keystore: SyncCryptoStorePtr,
|
|
sync_oracle: SO,
|
|
force_authoring: bool,
|
|
backoff_authoring_blocks: Option<BS>,
|
|
_key_type: PhantomData<P>,
|
|
}
|
|
|
|
impl<B, C, E, I, P, Error, SO, BS> sc_consensus_slots::SimpleSlotWorker<B>
|
|
for AuraWorker<C, E, I, P, SO, BS>
|
|
where
|
|
B: BlockT,
|
|
C: ProvideRuntimeApi<B> + BlockOf + ProvideCache<B> + HeaderBackend<B> + Sync,
|
|
C::Api: AuraApi<B, AuthorityId<P>>,
|
|
E: Environment<B, Error = Error>,
|
|
E::Proposer: Proposer<B, Error = Error, Transaction = sp_api::TransactionFor<C, B>>,
|
|
I: BlockImport<B, Transaction = sp_api::TransactionFor<C, B>> + Send + Sync + 'static,
|
|
P: Pair + Send + Sync,
|
|
P::Public: AppPublic + Public + Member + Encode + Decode + Hash,
|
|
P::Signature: TryFrom<Vec<u8>> + Member + Encode + Decode + Hash + Debug,
|
|
SO: SyncOracle + Send + Clone,
|
|
BS: BackoffAuthoringBlocksStrategy<NumberFor<B>> + Send + 'static,
|
|
Error: std::error::Error + Send + From<sp_consensus::Error> + 'static,
|
|
{
|
|
type BlockImport = I;
|
|
type SyncOracle = SO;
|
|
type CreateProposer = Pin<Box<
|
|
dyn Future<Output = Result<E::Proposer, sp_consensus::Error>> + Send + 'static
|
|
>>;
|
|
type Proposer = E::Proposer;
|
|
type Claim = P::Public;
|
|
type EpochData = Vec<AuthorityId<P>>;
|
|
|
|
fn logging_target(&self) -> &'static str {
|
|
"aura"
|
|
}
|
|
|
|
fn block_import(&self) -> Arc<Mutex<Self::BlockImport>> {
|
|
self.block_import.clone()
|
|
}
|
|
|
|
fn epoch_data(
|
|
&self,
|
|
header: &B::Header,
|
|
_slot: Slot,
|
|
) -> Result<Self::EpochData, sp_consensus::Error> {
|
|
authorities(self.client.as_ref(), &BlockId::Hash(header.hash()))
|
|
}
|
|
|
|
fn authorities_len(&self, epoch_data: &Self::EpochData) -> Option<usize> {
|
|
Some(epoch_data.len())
|
|
}
|
|
|
|
fn claim_slot(
|
|
&self,
|
|
_header: &B::Header,
|
|
slot: Slot,
|
|
epoch_data: &Self::EpochData,
|
|
) -> Option<Self::Claim> {
|
|
let expected_author = slot_author::<P>(slot, epoch_data);
|
|
expected_author.and_then(|p| {
|
|
if SyncCryptoStore::has_keys(
|
|
&*self.keystore,
|
|
&[(p.to_raw_vec(), sp_application_crypto::key_types::AURA)],
|
|
) {
|
|
Some(p.clone())
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
}
|
|
|
|
fn pre_digest_data(
|
|
&self,
|
|
slot: Slot,
|
|
_claim: &Self::Claim,
|
|
) -> Vec<sp_runtime::DigestItem<B::Hash>> {
|
|
vec![
|
|
<DigestItemFor<B> as CompatibleDigestItem<P>>::aura_pre_digest(slot),
|
|
]
|
|
}
|
|
|
|
fn block_import_params(&self) -> Box<dyn Fn(
|
|
B::Header,
|
|
&B::Hash,
|
|
Vec<B::Extrinsic>,
|
|
StorageChanges<sp_api::TransactionFor<C, B>, B>,
|
|
Self::Claim,
|
|
Self::EpochData,
|
|
) -> Result<
|
|
sp_consensus::BlockImportParams<B, sp_api::TransactionFor<C, B>>,
|
|
sp_consensus::Error> + Send + 'static>
|
|
{
|
|
let keystore = self.keystore.clone();
|
|
Box::new(move |header, header_hash, body, storage_changes, public, _epoch| {
|
|
// sign the pre-sealed hash of the block and then
|
|
// add it to a digest item.
|
|
let public_type_pair = public.to_public_crypto_pair();
|
|
let public = public.to_raw_vec();
|
|
let signature = SyncCryptoStore::sign_with(
|
|
&*keystore,
|
|
<AuthorityId<P> as AppKey>::ID,
|
|
&public_type_pair,
|
|
header_hash.as_ref()
|
|
).map_err(|e| sp_consensus::Error::CannotSign(
|
|
public.clone(), e.to_string(),
|
|
))?
|
|
.ok_or_else(|| sp_consensus::Error::CannotSign(
|
|
public.clone(), "Could not find key in keystore.".into(),
|
|
))?;
|
|
let signature = signature.clone().try_into()
|
|
.map_err(|_| sp_consensus::Error::InvalidSignature(
|
|
signature, public
|
|
))?;
|
|
|
|
let signature_digest_item = <DigestItemFor<B> as CompatibleDigestItem<P>>::aura_seal(signature);
|
|
|
|
let mut import_block = BlockImportParams::new(BlockOrigin::Own, header);
|
|
import_block.post_digests.push(signature_digest_item);
|
|
import_block.body = Some(body);
|
|
import_block.storage_changes = Some(storage_changes);
|
|
import_block.fork_choice = Some(ForkChoiceStrategy::LongestChain);
|
|
|
|
Ok(import_block)
|
|
})
|
|
}
|
|
|
|
fn force_authoring(&self) -> bool {
|
|
self.force_authoring
|
|
}
|
|
|
|
fn should_backoff(&self, slot: Slot, chain_head: &B::Header) -> bool {
|
|
if let Some(ref strategy) = self.backoff_authoring_blocks {
|
|
if let Ok(chain_head_slot) = find_pre_digest::<B, P>(chain_head) {
|
|
return strategy.should_backoff(
|
|
*chain_head.number(),
|
|
chain_head_slot,
|
|
self.client.info().finalized_number,
|
|
slot,
|
|
self.logging_target(),
|
|
);
|
|
}
|
|
}
|
|
false
|
|
}
|
|
|
|
fn sync_oracle(&mut self) -> &mut Self::SyncOracle {
|
|
&mut self.sync_oracle
|
|
}
|
|
|
|
fn proposer(&mut self, block: &B::Header) -> Self::CreateProposer {
|
|
Box::pin(self.env.init(block).map_err(|e| {
|
|
sp_consensus::Error::ClientImport(format!("{:?}", e)).into()
|
|
}))
|
|
}
|
|
|
|
fn proposing_remaining_duration(
|
|
&self,
|
|
head: &B::Header,
|
|
slot_info: &SlotInfo,
|
|
) -> Option<std::time::Duration> {
|
|
let slot_remaining = self.slot_remaining_duration(slot_info);
|
|
|
|
let parent_slot = match find_pre_digest::<B, P>(head) {
|
|
Err(_) => return Some(slot_remaining),
|
|
Ok(d) => d,
|
|
};
|
|
|
|
if let Some(slot_lenience) =
|
|
sc_consensus_slots::slot_lenience_exponential(parent_slot, slot_info)
|
|
{
|
|
debug!(
|
|
target: "aura",
|
|
"No block for {} slots. Applying linear lenience of {}s",
|
|
slot_info.slot.saturating_sub(parent_slot + 1),
|
|
slot_lenience.as_secs(),
|
|
);
|
|
|
|
Some(slot_remaining + slot_lenience)
|
|
} else {
|
|
Some(slot_remaining)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn aura_err<B: BlockT>(error: Error<B>) -> Error<B> {
|
|
debug!(target: "aura", "{}", error);
|
|
error
|
|
}
|
|
|
|
#[derive(derive_more::Display, Debug)]
|
|
enum Error<B: BlockT> {
|
|
#[display(fmt = "Multiple Aura pre-runtime headers")]
|
|
MultipleHeaders,
|
|
#[display(fmt = "No Aura pre-runtime digest found")]
|
|
NoDigestFound,
|
|
#[display(fmt = "Header {:?} is unsealed", _0)]
|
|
HeaderUnsealed(B::Hash),
|
|
#[display(fmt = "Header {:?} has a bad seal", _0)]
|
|
HeaderBadSeal(B::Hash),
|
|
#[display(fmt = "Slot Author not found")]
|
|
SlotAuthorNotFound,
|
|
#[display(fmt = "Bad signature on {:?}", _0)]
|
|
BadSignature(B::Hash),
|
|
#[display(fmt = "Rejecting block too far in future")]
|
|
TooFarInFuture,
|
|
Client(sp_blockchain::Error),
|
|
DataProvider(String),
|
|
Runtime(String),
|
|
#[display(fmt = "Slot number must increase: parent slot: {}, this slot: {}", _0, _1)]
|
|
SlotMustIncrease(Slot, Slot),
|
|
#[display(fmt = "Parent ({}) of {} unavailable. Cannot import", _0, _1)]
|
|
ParentUnavailable(B::Hash, B::Hash),
|
|
}
|
|
|
|
impl<B: BlockT> std::convert::From<Error<B>> for String {
|
|
fn from(error: Error<B>) -> String {
|
|
error.to_string()
|
|
}
|
|
}
|
|
|
|
fn find_pre_digest<B: BlockT, P: Pair>(header: &B::Header) -> Result<Slot, Error<B>>
|
|
where DigestItemFor<B>: CompatibleDigestItem<P>,
|
|
P::Signature: Decode,
|
|
P::Public: Encode + Decode + PartialEq + Clone,
|
|
{
|
|
if header.number().is_zero() {
|
|
return Ok(0.into());
|
|
}
|
|
|
|
let mut pre_digest: Option<Slot> = None;
|
|
for log in header.digest().logs() {
|
|
trace!(target: "aura", "Checking log {:?}", log);
|
|
match (log.as_aura_pre_digest(), pre_digest.is_some()) {
|
|
(Some(_), true) => Err(aura_err(Error::MultipleHeaders))?,
|
|
(None, _) => trace!(target: "aura", "Ignoring digest not meant for us"),
|
|
(s, false) => pre_digest = s,
|
|
}
|
|
}
|
|
pre_digest.ok_or_else(|| aura_err(Error::NoDigestFound))
|
|
}
|
|
|
|
/// check a header has been signed by the right key. If the slot is too far in the future, an error will be returned.
|
|
/// if it's successful, returns the pre-header and the digest item containing the seal.
|
|
///
|
|
/// This digest item will always return `Some` when used with `as_aura_seal`.
|
|
//
|
|
fn check_header<C, B: BlockT, P: Pair>(
|
|
client: &C,
|
|
slot_now: Slot,
|
|
mut header: B::Header,
|
|
hash: B::Hash,
|
|
authorities: &[AuthorityId<P>],
|
|
) -> Result<CheckedHeader<B::Header, (Slot, DigestItemFor<B>)>, Error<B>> where
|
|
DigestItemFor<B>: CompatibleDigestItem<P>,
|
|
P::Signature: Decode,
|
|
C: sc_client_api::backend::AuxStore,
|
|
P::Public: Encode + Decode + PartialEq + Clone,
|
|
{
|
|
let seal = match header.digest_mut().pop() {
|
|
Some(x) => x,
|
|
None => return Err(Error::HeaderUnsealed(hash)),
|
|
};
|
|
|
|
let sig = seal.as_aura_seal().ok_or_else(|| {
|
|
aura_err(Error::HeaderBadSeal(hash))
|
|
})?;
|
|
|
|
let slot = find_pre_digest::<B, _>(&header)?;
|
|
|
|
if slot > slot_now {
|
|
header.digest_mut().push(seal);
|
|
Ok(CheckedHeader::Deferred(header, slot))
|
|
} else {
|
|
// check the signature is valid under the expected authority and
|
|
// chain state.
|
|
let expected_author = match slot_author::<P>(slot, &authorities) {
|
|
None => return Err(Error::SlotAuthorNotFound),
|
|
Some(author) => author,
|
|
};
|
|
|
|
let pre_hash = header.hash();
|
|
|
|
if P::verify(&sig, pre_hash.as_ref(), expected_author) {
|
|
if let Some(equivocation_proof) = check_equivocation(
|
|
client,
|
|
slot_now,
|
|
slot,
|
|
&header,
|
|
expected_author,
|
|
).map_err(Error::Client)? {
|
|
info!(
|
|
"Slot author is equivocating at slot {} with headers {:?} and {:?}",
|
|
slot,
|
|
equivocation_proof.first_header.hash(),
|
|
equivocation_proof.second_header.hash(),
|
|
);
|
|
}
|
|
|
|
Ok(CheckedHeader::Checked(header, (slot, seal)))
|
|
} else {
|
|
Err(Error::BadSignature(hash))
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A verifier for Aura blocks.
|
|
pub struct AuraVerifier<C, P, CAW> {
|
|
client: Arc<C>,
|
|
phantom: PhantomData<P>,
|
|
inherent_data_providers: sp_inherents::InherentDataProviders,
|
|
can_author_with: CAW,
|
|
}
|
|
|
|
impl<C, P, CAW> AuraVerifier<C, P, CAW> where
|
|
P: Send + Sync + 'static,
|
|
CAW: Send + Sync + 'static,
|
|
{
|
|
fn check_inherents<B: BlockT>(
|
|
&self,
|
|
block: B,
|
|
block_id: BlockId<B>,
|
|
inherent_data: InherentData,
|
|
timestamp_now: u64,
|
|
) -> Result<(), Error<B>> where
|
|
C: ProvideRuntimeApi<B>, C::Api: BlockBuilderApi<B>,
|
|
CAW: CanAuthorWith<B>,
|
|
{
|
|
const MAX_TIMESTAMP_DRIFT_SECS: u64 = 60;
|
|
|
|
if let Err(e) = self.can_author_with.can_author_with(&block_id) {
|
|
debug!(
|
|
target: "aura",
|
|
"Skipping `check_inherents` as authoring version is not compatible: {}",
|
|
e,
|
|
);
|
|
|
|
return Ok(())
|
|
}
|
|
|
|
let inherent_res = self.client.runtime_api().check_inherents(
|
|
&block_id,
|
|
block,
|
|
inherent_data,
|
|
).map_err(|e| Error::Client(e.into()))?;
|
|
|
|
if !inherent_res.ok() {
|
|
inherent_res
|
|
.into_errors()
|
|
.try_for_each(|(i, e)| match TIError::try_from(&i, &e) {
|
|
Some(TIError::ValidAtTimestamp(timestamp)) => {
|
|
// halt import until timestamp is valid.
|
|
// reject when too far ahead.
|
|
if timestamp > timestamp_now + MAX_TIMESTAMP_DRIFT_SECS {
|
|
return Err(Error::TooFarInFuture);
|
|
}
|
|
|
|
let diff = timestamp.saturating_sub(timestamp_now);
|
|
info!(
|
|
target: "aura",
|
|
"halting for block {} seconds in the future",
|
|
diff
|
|
);
|
|
telemetry!(CONSENSUS_INFO; "aura.halting_for_future_block";
|
|
"diff" => ?diff
|
|
);
|
|
thread::sleep(Duration::from_secs(diff));
|
|
Ok(())
|
|
},
|
|
Some(TIError::Other(e)) => Err(Error::Runtime(e.into())),
|
|
None => Err(Error::DataProvider(
|
|
self.inherent_data_providers.error_to_string(&i, &e)
|
|
)),
|
|
})
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
#[forbid(deprecated)]
|
|
impl<B: BlockT, C, P, CAW> Verifier<B> for AuraVerifier<C, P, CAW> where
|
|
C: ProvideRuntimeApi<B> +
|
|
Send +
|
|
Sync +
|
|
sc_client_api::backend::AuxStore +
|
|
ProvideCache<B> +
|
|
BlockOf,
|
|
C::Api: BlockBuilderApi<B> + AuraApi<B, AuthorityId<P>> + ApiExt<B>,
|
|
DigestItemFor<B>: CompatibleDigestItem<P>,
|
|
P: Pair + Send + Sync + 'static,
|
|
P::Public: Send + Sync + Hash + Eq + Clone + Decode + Encode + Debug + 'static,
|
|
P::Signature: Encode + Decode,
|
|
CAW: CanAuthorWith<B> + Send + Sync + 'static,
|
|
{
|
|
fn verify(
|
|
&mut self,
|
|
origin: BlockOrigin,
|
|
header: B::Header,
|
|
justification: Option<Justification>,
|
|
mut body: Option<Vec<B::Extrinsic>>,
|
|
) -> Result<(BlockImportParams<B, ()>, Option<Vec<(CacheKeyId, Vec<u8>)>>), String> {
|
|
let mut inherent_data = self.inherent_data_providers
|
|
.create_inherent_data()
|
|
.map_err(|e| e.into_string())?;
|
|
let (timestamp_now, slot_now, _) = AuraSlotCompatible.extract_timestamp_and_slot(&inherent_data)
|
|
.map_err(|e| format!("Could not extract timestamp and slot: {:?}", e))?;
|
|
let hash = header.hash();
|
|
let parent_hash = *header.parent_hash();
|
|
let authorities = authorities(self.client.as_ref(), &BlockId::Hash(parent_hash))
|
|
.map_err(|e| format!("Could not fetch authorities at {:?}: {:?}", parent_hash, e))?;
|
|
|
|
// we add one to allow for some small drift.
|
|
// FIXME #1019 in the future, alter this queue to allow deferring of
|
|
// headers
|
|
let checked_header = check_header::<C, B, P>(
|
|
&self.client,
|
|
slot_now + 1,
|
|
header,
|
|
hash,
|
|
&authorities[..],
|
|
).map_err(|e| e.to_string())?;
|
|
match checked_header {
|
|
CheckedHeader::Checked(pre_header, (slot, seal)) => {
|
|
// if the body is passed through, we need to use the runtime
|
|
// to check that the internally-set timestamp in the inherents
|
|
// actually matches the slot set in the seal.
|
|
if let Some(inner_body) = body.take() {
|
|
inherent_data.aura_replace_inherent_data(slot);
|
|
let block = B::new(pre_header.clone(), inner_body);
|
|
|
|
// skip the inherents verification if the runtime API is old.
|
|
if self.client
|
|
.runtime_api()
|
|
.has_api_with::<dyn BlockBuilderApi<B>, _>(
|
|
&BlockId::Hash(parent_hash),
|
|
|v| v >= 2,
|
|
)
|
|
.map_err(|e| format!("{:?}", e))?
|
|
{
|
|
self.check_inherents(
|
|
block.clone(),
|
|
BlockId::Hash(parent_hash),
|
|
inherent_data,
|
|
timestamp_now,
|
|
).map_err(|e| e.to_string())?;
|
|
}
|
|
|
|
let (_, inner_body) = block.deconstruct();
|
|
body = Some(inner_body);
|
|
}
|
|
|
|
trace!(target: "aura", "Checked {:?}; importing.", pre_header);
|
|
telemetry!(CONSENSUS_TRACE; "aura.checked_and_importing"; "pre_header" => ?pre_header);
|
|
|
|
// Look for an authorities-change log.
|
|
let maybe_keys = pre_header.digest()
|
|
.logs()
|
|
.iter()
|
|
.filter_map(|l| l.try_to::<ConsensusLog<AuthorityId<P>>>(
|
|
OpaqueDigestItemId::Consensus(&AURA_ENGINE_ID)
|
|
))
|
|
.find_map(|l| match l {
|
|
ConsensusLog::AuthoritiesChange(a) => Some(
|
|
vec![(well_known_cache_keys::AUTHORITIES, a.encode())]
|
|
),
|
|
_ => None,
|
|
});
|
|
|
|
let mut import_block = BlockImportParams::new(origin, pre_header);
|
|
import_block.post_digests.push(seal);
|
|
import_block.body = body;
|
|
import_block.justification = justification;
|
|
import_block.fork_choice = Some(ForkChoiceStrategy::LongestChain);
|
|
import_block.post_hash = Some(hash);
|
|
|
|
Ok((import_block, maybe_keys))
|
|
}
|
|
CheckedHeader::Deferred(a, b) => {
|
|
debug!(target: "aura", "Checking {:?} failed; {:?}, {:?}.", hash, a, b);
|
|
telemetry!(CONSENSUS_DEBUG; "aura.header_too_far_in_future";
|
|
"hash" => ?hash, "a" => ?a, "b" => ?b
|
|
);
|
|
Err(format!("Header {:?} rejected: too far in the future", hash))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn initialize_authorities_cache<A, B, C>(client: &C) -> Result<(), ConsensusError> where
|
|
A: Codec + Debug,
|
|
B: BlockT,
|
|
C: ProvideRuntimeApi<B> + BlockOf + ProvideCache<B>,
|
|
C::Api: AuraApi<B, A>,
|
|
{
|
|
// no cache => no initialization
|
|
let cache = match client.cache() {
|
|
Some(cache) => cache,
|
|
None => return Ok(()),
|
|
};
|
|
|
|
// check if we already have initialized the cache
|
|
let map_err = |error| sp_consensus::Error::from(sp_consensus::Error::ClientImport(
|
|
format!(
|
|
"Error initializing authorities cache: {}",
|
|
error,
|
|
)));
|
|
|
|
let genesis_id = BlockId::Number(Zero::zero());
|
|
let genesis_authorities: Option<Vec<A>> = cache
|
|
.get_at(&well_known_cache_keys::AUTHORITIES, &genesis_id)
|
|
.unwrap_or(None)
|
|
.and_then(|(_, _, v)| Decode::decode(&mut &v[..]).ok());
|
|
if genesis_authorities.is_some() {
|
|
return Ok(());
|
|
}
|
|
|
|
let genesis_authorities = authorities(client, &genesis_id)?;
|
|
cache.initialize(&well_known_cache_keys::AUTHORITIES, genesis_authorities.encode())
|
|
.map_err(map_err)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[allow(deprecated)]
|
|
fn authorities<A, B, C>(client: &C, at: &BlockId<B>) -> Result<Vec<A>, ConsensusError> where
|
|
A: Codec + Debug,
|
|
B: BlockT,
|
|
C: ProvideRuntimeApi<B> + BlockOf + ProvideCache<B>,
|
|
C::Api: AuraApi<B, A>,
|
|
{
|
|
client
|
|
.cache()
|
|
.and_then(|cache| cache
|
|
.get_at(&well_known_cache_keys::AUTHORITIES, at)
|
|
.unwrap_or(None)
|
|
.and_then(|(_, _, v)| Decode::decode(&mut &v[..]).ok())
|
|
)
|
|
.or_else(|| AuraApi::authorities(&*client.runtime_api(), at).ok())
|
|
.ok_or_else(|| sp_consensus::Error::InvalidAuthoritiesSet.into())
|
|
}
|
|
|
|
/// Register the aura inherent data provider, if not registered already.
|
|
fn register_aura_inherent_data_provider(
|
|
inherent_data_providers: &InherentDataProviders,
|
|
slot_duration: u64,
|
|
) -> Result<(), sp_consensus::Error> {
|
|
if !inherent_data_providers.has_provider(&INHERENT_IDENTIFIER) {
|
|
inherent_data_providers
|
|
.register_provider(InherentDataProvider::new(slot_duration))
|
|
.map_err(Into::into)
|
|
.map_err(sp_consensus::Error::InherentData)
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// A block-import handler for Aura.
|
|
pub struct AuraBlockImport<Block: BlockT, C, I: BlockImport<Block>, P> {
|
|
inner: I,
|
|
client: Arc<C>,
|
|
_phantom: PhantomData<(Block, P)>,
|
|
}
|
|
|
|
impl<Block: BlockT, C, I: Clone + BlockImport<Block>, P> Clone for AuraBlockImport<Block, C, I, P> {
|
|
fn clone(&self) -> Self {
|
|
AuraBlockImport {
|
|
inner: self.inner.clone(),
|
|
client: self.client.clone(),
|
|
_phantom: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Block: BlockT, C, I: BlockImport<Block>, P> AuraBlockImport<Block, C, I, P> {
|
|
/// New aura block import.
|
|
pub fn new(
|
|
inner: I,
|
|
client: Arc<C>,
|
|
) -> Self {
|
|
Self {
|
|
inner,
|
|
client,
|
|
_phantom: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Block: BlockT, C, I, P> BlockImport<Block> for AuraBlockImport<Block, C, I, P> where
|
|
I: BlockImport<Block, Transaction = sp_api::TransactionFor<C, Block>> + Send + Sync,
|
|
I::Error: Into<ConsensusError>,
|
|
C: HeaderBackend<Block> + ProvideRuntimeApi<Block>,
|
|
P: Pair + Send + Sync + 'static,
|
|
P::Public: Clone + Eq + Send + Sync + Hash + Debug + Encode + Decode,
|
|
P::Signature: Encode + Decode,
|
|
{
|
|
type Error = ConsensusError;
|
|
type Transaction = sp_api::TransactionFor<C, Block>;
|
|
|
|
fn check_block(
|
|
&mut self,
|
|
block: BlockCheckParams<Block>,
|
|
) -> Result<ImportResult, Self::Error> {
|
|
self.inner.check_block(block).map_err(Into::into)
|
|
}
|
|
|
|
fn import_block(
|
|
&mut self,
|
|
block: BlockImportParams<Block, Self::Transaction>,
|
|
new_cache: HashMap<CacheKeyId, Vec<u8>>,
|
|
) -> Result<ImportResult, Self::Error> {
|
|
let hash = block.post_hash();
|
|
let slot = find_pre_digest::<Block, P>(&block.header)
|
|
.expect("valid Aura headers must contain a predigest; \
|
|
header has been already verified; qed");
|
|
|
|
let parent_hash = *block.header.parent_hash();
|
|
let parent_header = self.client.header(BlockId::Hash(parent_hash))
|
|
.map_err(|e| ConsensusError::ChainLookup(e.to_string()))?
|
|
.ok_or_else(|| ConsensusError::ChainLookup(aura_err(
|
|
Error::<Block>::ParentUnavailable(parent_hash, hash)
|
|
).into()))?;
|
|
|
|
let parent_slot = find_pre_digest::<Block, P>(&parent_header)
|
|
.expect("valid Aura headers contain a pre-digest; \
|
|
parent header has already been verified; qed");
|
|
|
|
// make sure that slot number is strictly increasing
|
|
if slot <= parent_slot {
|
|
return Err(
|
|
ConsensusError::ClientImport(aura_err(
|
|
Error::<Block>::SlotMustIncrease(parent_slot, slot)
|
|
).into())
|
|
);
|
|
}
|
|
|
|
self.inner.import_block(block, new_cache).map_err(Into::into)
|
|
}
|
|
}
|
|
|
|
/// Start an import queue for the Aura consensus algorithm.
|
|
pub fn import_queue<B, I, C, P, S, CAW>(
|
|
slot_duration: SlotDuration,
|
|
block_import: I,
|
|
justification_import: Option<BoxJustificationImport<B>>,
|
|
client: Arc<C>,
|
|
inherent_data_providers: InherentDataProviders,
|
|
spawner: &S,
|
|
registry: Option<&Registry>,
|
|
can_author_with: CAW,
|
|
) -> Result<DefaultImportQueue<B, C>, sp_consensus::Error> where
|
|
B: BlockT,
|
|
C::Api: BlockBuilderApi<B> + AuraApi<B, AuthorityId<P>> + ApiExt<B>,
|
|
C: 'static + ProvideRuntimeApi<B> + BlockOf + ProvideCache<B> + Send + Sync + AuxStore + HeaderBackend<B>,
|
|
I: BlockImport<B, Error=ConsensusError, Transaction = sp_api::TransactionFor<C, B>> + Send + Sync + 'static,
|
|
DigestItemFor<B>: CompatibleDigestItem<P>,
|
|
P: Pair + Send + Sync + 'static,
|
|
P::Public: Clone + Eq + Send + Sync + Hash + Debug + Encode + Decode,
|
|
P::Signature: Encode + Decode,
|
|
S: sp_core::traits::SpawnEssentialNamed,
|
|
CAW: CanAuthorWith<B> + Send + Sync + 'static,
|
|
{
|
|
register_aura_inherent_data_provider(&inherent_data_providers, slot_duration.get())?;
|
|
initialize_authorities_cache(&*client)?;
|
|
|
|
let verifier = AuraVerifier {
|
|
client,
|
|
inherent_data_providers,
|
|
phantom: PhantomData,
|
|
can_author_with,
|
|
};
|
|
|
|
Ok(BasicQueue::new(
|
|
verifier,
|
|
Box::new(block_import),
|
|
justification_import,
|
|
spawner,
|
|
registry,
|
|
))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use sp_consensus::{
|
|
NoNetwork as DummyOracle, Proposal, AlwaysCanAuthor, DisableProofRecording,
|
|
};
|
|
use sc_network_test::{Block as TestBlock, *};
|
|
use sp_runtime::traits::{Block as BlockT, DigestFor};
|
|
use sc_network::config::ProtocolConfig;
|
|
use parking_lot::Mutex;
|
|
use sp_keyring::sr25519::Keyring;
|
|
use sc_client_api::BlockchainEvents;
|
|
use sp_consensus_aura::sr25519::AuthorityPair;
|
|
use sc_consensus_slots::{SimpleSlotWorker, BackoffAuthoringOnFinalizedHeadLagging};
|
|
use std::{task::Poll, time::Instant};
|
|
use sc_block_builder::BlockBuilderProvider;
|
|
use sp_runtime::traits::Header as _;
|
|
use substrate_test_runtime_client::{TestClient, runtime::{Header, H256}};
|
|
use sc_keystore::LocalKeystore;
|
|
use sp_application_crypto::key_types::AURA;
|
|
|
|
type Error = sp_blockchain::Error;
|
|
|
|
struct DummyFactory(Arc<TestClient>);
|
|
struct DummyProposer(u64, Arc<TestClient>);
|
|
|
|
impl Environment<TestBlock> for DummyFactory {
|
|
type Proposer = DummyProposer;
|
|
type CreateProposer = futures::future::Ready<Result<DummyProposer, Error>>;
|
|
type Error = Error;
|
|
|
|
fn init(&mut self, parent_header: &<TestBlock as BlockT>::Header)
|
|
-> Self::CreateProposer
|
|
{
|
|
futures::future::ready(Ok(DummyProposer(parent_header.number + 1, self.0.clone())))
|
|
}
|
|
}
|
|
|
|
impl Proposer<TestBlock> for DummyProposer {
|
|
type Error = Error;
|
|
type Transaction = sc_client_api::TransactionFor<
|
|
substrate_test_runtime_client::Backend,
|
|
TestBlock
|
|
>;
|
|
type Proposal = future::Ready<Result<Proposal<TestBlock, Self::Transaction, ()>, Error>>;
|
|
type ProofRecording = DisableProofRecording;
|
|
type Proof = ();
|
|
|
|
fn propose(
|
|
self,
|
|
_: InherentData,
|
|
digests: DigestFor<TestBlock>,
|
|
_: Duration,
|
|
) -> Self::Proposal {
|
|
let r = self.1.new_block(digests).unwrap().build().map_err(|e| e.into());
|
|
|
|
future::ready(r.map(|b| Proposal {
|
|
block: b.block,
|
|
proof: (),
|
|
storage_changes: b.storage_changes,
|
|
}))
|
|
}
|
|
}
|
|
|
|
const SLOT_DURATION: u64 = 1000;
|
|
|
|
pub struct AuraTestNet {
|
|
peers: Vec<Peer<()>>,
|
|
}
|
|
|
|
impl TestNetFactory for AuraTestNet {
|
|
type Verifier = AuraVerifier<PeersFullClient, AuthorityPair, AlwaysCanAuthor>;
|
|
type PeerData = ();
|
|
|
|
/// Create new test network with peers and given config.
|
|
fn from_config(_config: &ProtocolConfig) -> Self {
|
|
AuraTestNet {
|
|
peers: Vec::new(),
|
|
}
|
|
}
|
|
|
|
fn make_verifier(&self, client: PeersClient, _cfg: &ProtocolConfig, _peer_data: &())
|
|
-> Self::Verifier
|
|
{
|
|
match client {
|
|
PeersClient::Full(client, _) => {
|
|
let slot_duration = slot_duration(&*client).expect("slot duration available");
|
|
let inherent_data_providers = InherentDataProviders::new();
|
|
register_aura_inherent_data_provider(
|
|
&inherent_data_providers,
|
|
slot_duration.get()
|
|
).expect("Registers aura inherent data provider");
|
|
|
|
assert_eq!(slot_duration.get(), SLOT_DURATION);
|
|
AuraVerifier {
|
|
client,
|
|
inherent_data_providers,
|
|
phantom: Default::default(),
|
|
can_author_with: AlwaysCanAuthor,
|
|
}
|
|
},
|
|
PeersClient::Light(_, _) => unreachable!("No (yet) tests for light client + Aura"),
|
|
}
|
|
}
|
|
|
|
fn peer(&mut self, i: usize) -> &mut Peer<Self::PeerData> {
|
|
&mut self.peers[i]
|
|
}
|
|
|
|
fn peers(&self) -> &Vec<Peer<Self::PeerData>> {
|
|
&self.peers
|
|
}
|
|
|
|
fn mut_peers<F: FnOnce(&mut Vec<Peer<Self::PeerData>>)>(&mut self, closure: F) {
|
|
closure(&mut self.peers);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
#[allow(deprecated)]
|
|
fn authoring_blocks() {
|
|
sp_tracing::try_init_simple();
|
|
let net = AuraTestNet::new(3);
|
|
|
|
let peers = &[
|
|
(0, Keyring::Alice),
|
|
(1, Keyring::Bob),
|
|
(2, Keyring::Charlie),
|
|
];
|
|
|
|
let net = Arc::new(Mutex::new(net));
|
|
let mut import_notifications = Vec::new();
|
|
let mut aura_futures = Vec::new();
|
|
|
|
let mut keystore_paths = Vec::new();
|
|
for (peer_id, key) in peers {
|
|
let mut net = net.lock();
|
|
let peer = net.peer(*peer_id);
|
|
let client = peer.client().as_full().expect("full clients are created").clone();
|
|
let select_chain = peer.select_chain().expect("full client has a select chain");
|
|
let keystore_path = tempfile::tempdir().expect("Creates keystore path");
|
|
let keystore = Arc::new(LocalKeystore::open(keystore_path.path(), None)
|
|
.expect("Creates keystore."));
|
|
|
|
|
|
SyncCryptoStore::sr25519_generate_new(&*keystore, AURA, Some(&key.to_seed()))
|
|
.expect("Creates authority key");
|
|
keystore_paths.push(keystore_path);
|
|
|
|
let environ = DummyFactory(client.clone());
|
|
import_notifications.push(
|
|
client.import_notification_stream()
|
|
.take_while(|n| future::ready(!(n.origin != BlockOrigin::Own && n.header.number() < &5)))
|
|
.for_each(move |_| future::ready(()))
|
|
);
|
|
|
|
let slot_duration = slot_duration(&*client).expect("slot duration available");
|
|
|
|
let inherent_data_providers = InherentDataProviders::new();
|
|
register_aura_inherent_data_provider(
|
|
&inherent_data_providers, slot_duration.get()
|
|
).expect("Registers aura inherent data provider");
|
|
|
|
aura_futures.push(start_aura::<_, _, _, _, _, AuthorityPair, _, _, _, _>(
|
|
slot_duration,
|
|
client.clone(),
|
|
select_chain,
|
|
client,
|
|
environ,
|
|
DummyOracle,
|
|
inherent_data_providers,
|
|
false,
|
|
Some(BackoffAuthoringOnFinalizedHeadLagging::default()),
|
|
keystore,
|
|
sp_consensus::AlwaysCanAuthor,
|
|
).expect("Starts aura"));
|
|
}
|
|
|
|
futures::executor::block_on(future::select(
|
|
future::poll_fn(move |cx| {
|
|
net.lock().poll(cx);
|
|
Poll::<()>::Pending
|
|
}),
|
|
future::select(
|
|
future::join_all(aura_futures),
|
|
future::join_all(import_notifications)
|
|
)
|
|
));
|
|
}
|
|
|
|
#[test]
|
|
fn authorities_call_works() {
|
|
let client = substrate_test_runtime_client::new();
|
|
|
|
assert_eq!(client.chain_info().best_number, 0);
|
|
assert_eq!(authorities(&client, &BlockId::Number(0)).unwrap(), vec![
|
|
Keyring::Alice.public().into(),
|
|
Keyring::Bob.public().into(),
|
|
Keyring::Charlie.public().into()
|
|
]);
|
|
}
|
|
|
|
#[test]
|
|
fn current_node_authority_should_claim_slot() {
|
|
let net = AuraTestNet::new(4);
|
|
|
|
let mut authorities = vec![
|
|
Keyring::Alice.public().into(),
|
|
Keyring::Bob.public().into(),
|
|
Keyring::Charlie.public().into()
|
|
];
|
|
|
|
let keystore_path = tempfile::tempdir().expect("Creates keystore path");
|
|
let keystore = LocalKeystore::open(keystore_path.path(), None)
|
|
.expect("Creates keystore.");
|
|
let public = SyncCryptoStore::sr25519_generate_new(&keystore, AuthorityPair::ID, None)
|
|
.expect("Key should be created");
|
|
authorities.push(public.into());
|
|
|
|
let net = Arc::new(Mutex::new(net));
|
|
|
|
let mut net = net.lock();
|
|
let peer = net.peer(3);
|
|
let client = peer.client().as_full().expect("full clients are created").clone();
|
|
let environ = DummyFactory(client.clone());
|
|
|
|
let worker = AuraWorker {
|
|
client: client.clone(),
|
|
block_import: Arc::new(Mutex::new(client)),
|
|
env: environ,
|
|
keystore: keystore.into(),
|
|
sync_oracle: DummyOracle.clone(),
|
|
force_authoring: false,
|
|
backoff_authoring_blocks: Some(BackoffAuthoringOnFinalizedHeadLagging::default()),
|
|
_key_type: PhantomData::<AuthorityPair>,
|
|
};
|
|
|
|
let head = Header::new(
|
|
1,
|
|
H256::from_low_u64_be(0),
|
|
H256::from_low_u64_be(0),
|
|
Default::default(),
|
|
Default::default()
|
|
);
|
|
assert!(worker.claim_slot(&head, 0.into(), &authorities).is_none());
|
|
assert!(worker.claim_slot(&head, 1.into(), &authorities).is_none());
|
|
assert!(worker.claim_slot(&head, 2.into(), &authorities).is_none());
|
|
assert!(worker.claim_slot(&head, 3.into(), &authorities).is_some());
|
|
assert!(worker.claim_slot(&head, 4.into(), &authorities).is_none());
|
|
assert!(worker.claim_slot(&head, 5.into(), &authorities).is_none());
|
|
assert!(worker.claim_slot(&head, 6.into(), &authorities).is_none());
|
|
assert!(worker.claim_slot(&head, 7.into(), &authorities).is_some());
|
|
}
|
|
|
|
#[test]
|
|
fn on_slot_returns_correct_block() {
|
|
let net = AuraTestNet::new(4);
|
|
|
|
let keystore_path = tempfile::tempdir().expect("Creates keystore path");
|
|
let keystore = LocalKeystore::open(keystore_path.path(), None)
|
|
.expect("Creates keystore.");
|
|
SyncCryptoStore::sr25519_generate_new(
|
|
&keystore,
|
|
AuthorityPair::ID, Some(&Keyring::Alice.to_seed()),
|
|
).expect("Key should be created");
|
|
|
|
let net = Arc::new(Mutex::new(net));
|
|
|
|
let mut net = net.lock();
|
|
let peer = net.peer(3);
|
|
let client = peer.client().as_full().expect("full clients are created").clone();
|
|
let environ = DummyFactory(client.clone());
|
|
|
|
let mut worker = AuraWorker {
|
|
client: client.clone(),
|
|
block_import: Arc::new(Mutex::new(client.clone())),
|
|
env: environ,
|
|
keystore: keystore.into(),
|
|
sync_oracle: DummyOracle.clone(),
|
|
force_authoring: false,
|
|
backoff_authoring_blocks: Option::<()>::None,
|
|
_key_type: PhantomData::<AuthorityPair>,
|
|
};
|
|
|
|
let head = client.header(&BlockId::Number(0)).unwrap().unwrap();
|
|
|
|
let res = futures::executor::block_on(worker.on_slot(
|
|
head,
|
|
SlotInfo {
|
|
slot: 0.into(),
|
|
timestamp: 0,
|
|
ends_at: Instant::now() + Duration::from_secs(100),
|
|
inherent_data: InherentData::new(),
|
|
duration: 1000,
|
|
},
|
|
)).unwrap();
|
|
|
|
// The returned block should be imported and we should be able to get its header by now.
|
|
assert!(client.header(&BlockId::Hash(res.block.hash())).unwrap().is_some());
|
|
}
|
|
}
|