mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 06:41:02 +00:00
Correct BABE randomness by calculating InOut bytes directly in pallet (#5876)
* vrf: remove Raw* types * babe: remove Raw* types * pallet-babe: switch representation of RawVRFOutput to Randomness * pallet-babe: calculate inout within the pallet * Remove make_transcript duplication * Bump spec version * Fix frame tests * and_then -> map * Always enable u64_backend * Fix nostd compile * fix import: should not use std * Remove unused definition of RawVRFOutput * Remove unused import of RuntimeDebug Co-authored-by: Gavin Wood <gavin@parity.io>
This commit is contained in:
Generated
+2
@@ -4026,6 +4026,7 @@ dependencies = [
|
|||||||
"pallet-timestamp",
|
"pallet-timestamp",
|
||||||
"parity-scale-codec",
|
"parity-scale-codec",
|
||||||
"serde",
|
"serde",
|
||||||
|
"sp-application-crypto",
|
||||||
"sp-consensus-babe",
|
"sp-consensus-babe",
|
||||||
"sp-consensus-vrf",
|
"sp-consensus-vrf",
|
||||||
"sp-core",
|
"sp-core",
|
||||||
@@ -7404,6 +7405,7 @@ dependencies = [
|
|||||||
name = "sp-consensus-babe"
|
name = "sp-consensus-babe"
|
||||||
version = "0.8.0-dev"
|
version = "0.8.0-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"merlin",
|
||||||
"parity-scale-codec",
|
"parity-scale-codec",
|
||||||
"sp-api",
|
"sp-api",
|
||||||
"sp-application-crypto",
|
"sp-application-crypto",
|
||||||
|
|||||||
@@ -83,8 +83,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
|||||||
// and set impl_version to 0. If only runtime
|
// and set impl_version to 0. If only runtime
|
||||||
// implementation changes and behavior does not, then leave spec_version as
|
// implementation changes and behavior does not, then leave spec_version as
|
||||||
// is and increment impl_version.
|
// is and increment impl_version.
|
||||||
spec_version: 245,
|
spec_version: 246,
|
||||||
impl_version: 3,
|
impl_version: 0,
|
||||||
apis: RUNTIME_API_VERSIONS,
|
apis: RUNTIME_API_VERSIONS,
|
||||||
transaction_version: 1,
|
transaction_version: 1,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -16,9 +16,8 @@
|
|||||||
|
|
||||||
//! BABE authority selection and slot claiming.
|
//! BABE authority selection and slot claiming.
|
||||||
|
|
||||||
use merlin::Transcript;
|
|
||||||
use sp_consensus_babe::{
|
use sp_consensus_babe::{
|
||||||
AuthorityId, BabeAuthorityWeight, BABE_ENGINE_ID, BABE_VRF_PREFIX,
|
make_transcript, AuthorityId, BabeAuthorityWeight, BABE_VRF_PREFIX,
|
||||||
SlotNumber, AuthorityPair,
|
SlotNumber, AuthorityPair,
|
||||||
};
|
};
|
||||||
use sp_consensus_babe::digests::{
|
use sp_consensus_babe::digests::{
|
||||||
@@ -119,19 +118,6 @@ pub(super) fn secondary_slot_author(
|
|||||||
Some(&expected_author.0)
|
Some(&expected_author.0)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn make_transcript(
|
|
||||||
randomness: &[u8],
|
|
||||||
slot_number: u64,
|
|
||||||
epoch: u64,
|
|
||||||
) -> Transcript {
|
|
||||||
let mut transcript = Transcript::new(&BABE_ENGINE_ID);
|
|
||||||
transcript.append_u64(b"slot number", slot_number);
|
|
||||||
transcript.append_u64(b"current epoch", epoch);
|
|
||||||
transcript.append_message(b"chain randomness", randomness);
|
|
||||||
transcript
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/// Claim a secondary slot if it is our turn to propose, returning the
|
/// Claim a secondary slot if it is our turn to propose, returning the
|
||||||
/// pre-digest to use when authoring the block, or `None` if it is not our turn
|
/// pre-digest to use when authoring the block, or `None` if it is not our turn
|
||||||
/// to propose.
|
/// to propose.
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
//! Verification for BABE headers.
|
//! Verification for BABE headers.
|
||||||
use sp_runtime::{traits::Header, traits::DigestItemFor};
|
use sp_runtime::{traits::Header, traits::DigestItemFor};
|
||||||
use sp_core::{Pair, Public};
|
use sp_core::{Pair, Public};
|
||||||
use sp_consensus_babe::{AuthoritySignature, SlotNumber, AuthorityPair, AuthorityId};
|
use sp_consensus_babe::{make_transcript, AuthoritySignature, SlotNumber, AuthorityPair, AuthorityId};
|
||||||
use sp_consensus_babe::digests::{
|
use sp_consensus_babe::digests::{
|
||||||
PreDigest, PrimaryPreDigest, SecondaryPlainPreDigest, SecondaryVRFPreDigest,
|
PreDigest, PrimaryPreDigest, SecondaryPlainPreDigest, SecondaryVRFPreDigest,
|
||||||
CompatibleDigestItem
|
CompatibleDigestItem
|
||||||
@@ -25,7 +25,7 @@ use sp_consensus_babe::digests::{
|
|||||||
use sc_consensus_slots::CheckedHeader;
|
use sc_consensus_slots::CheckedHeader;
|
||||||
use log::{debug, trace};
|
use log::{debug, trace};
|
||||||
use super::{find_pre_digest, babe_err, Epoch, BlockT, Error};
|
use super::{find_pre_digest, babe_err, Epoch, BlockT, Error};
|
||||||
use super::authorship::{make_transcript, calculate_primary_threshold, check_primary_threshold, secondary_slot_author};
|
use super::authorship::{calculate_primary_threshold, check_primary_threshold, secondary_slot_author};
|
||||||
|
|
||||||
/// BABE verification parameters
|
/// BABE verification parameters
|
||||||
pub(super) struct VerificationParams<'a, B: 'a + BlockT> {
|
pub(super) struct VerificationParams<'a, B: 'a + BlockT> {
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
||||||
|
sp-application-crypto = { version = "2.0.0-dev", default-features = false, path = "../../primitives/application-crypto" }
|
||||||
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||||
@@ -36,6 +37,7 @@ std = [
|
|||||||
"serde",
|
"serde",
|
||||||
"codec/std",
|
"codec/std",
|
||||||
"sp-std/std",
|
"sp-std/std",
|
||||||
|
"sp-application-crypto/std",
|
||||||
"frame-support/std",
|
"frame-support/std",
|
||||||
"sp-runtime/std",
|
"sp-runtime/std",
|
||||||
"sp-staking/std",
|
"sp-staking/std",
|
||||||
|
|||||||
@@ -34,13 +34,14 @@ use sp_staking::{
|
|||||||
SessionIndex,
|
SessionIndex,
|
||||||
offence::{Offence, Kind},
|
offence::{Offence, Kind},
|
||||||
};
|
};
|
||||||
|
use sp_application_crypto::Public;
|
||||||
|
|
||||||
use codec::{Encode, Decode};
|
use codec::{Encode, Decode};
|
||||||
use sp_inherents::{InherentIdentifier, InherentData, ProvideInherent, MakeFatalError};
|
use sp_inherents::{InherentIdentifier, InherentData, ProvideInherent, MakeFatalError};
|
||||||
use sp_consensus_babe::{
|
use sp_consensus_babe::{
|
||||||
BABE_ENGINE_ID, ConsensusLog, BabeAuthorityWeight, SlotNumber,
|
BABE_ENGINE_ID, ConsensusLog, BabeAuthorityWeight, SlotNumber,
|
||||||
inherents::{INHERENT_IDENTIFIER, BabeInherentData},
|
inherents::{INHERENT_IDENTIFIER, BabeInherentData},
|
||||||
digests::{NextEpochDescriptor, RawPreDigest},
|
digests::{NextEpochDescriptor, PreDigest},
|
||||||
};
|
};
|
||||||
use sp_consensus_vrf::schnorrkel;
|
use sp_consensus_vrf::schnorrkel;
|
||||||
pub use sp_consensus_babe::{AuthorityId, VRF_OUTPUT_LENGTH, RANDOMNESS_LENGTH, PUBLIC_KEY_LENGTH};
|
pub use sp_consensus_babe::{AuthorityId, VRF_OUTPUT_LENGTH, RANDOMNESS_LENGTH, PUBLIC_KEY_LENGTH};
|
||||||
@@ -102,7 +103,7 @@ impl EpochChangeTrigger for SameAuthoritiesForever {
|
|||||||
|
|
||||||
const UNDER_CONSTRUCTION_SEGMENT_LENGTH: usize = 256;
|
const UNDER_CONSTRUCTION_SEGMENT_LENGTH: usize = 256;
|
||||||
|
|
||||||
type MaybeVrf = Option<schnorrkel::RawVRFOutput>;
|
type MaybeRandomness = Option<schnorrkel::Randomness>;
|
||||||
|
|
||||||
decl_storage! {
|
decl_storage! {
|
||||||
trait Store for Module<T: Trait> as Babe {
|
trait Store for Module<T: Trait> as Babe {
|
||||||
@@ -147,11 +148,11 @@ decl_storage! {
|
|||||||
/// We reset all segments and return to `0` at the beginning of every
|
/// We reset all segments and return to `0` at the beginning of every
|
||||||
/// epoch.
|
/// epoch.
|
||||||
SegmentIndex build(|_| 0): u32;
|
SegmentIndex build(|_| 0): u32;
|
||||||
UnderConstruction: map hasher(twox_64_concat) u32 => Vec<schnorrkel::RawVRFOutput>;
|
UnderConstruction: map hasher(twox_64_concat) u32 => Vec<schnorrkel::Randomness>;
|
||||||
|
|
||||||
/// Temporary value (cleared at block finalization) which is `Some`
|
/// Temporary value (cleared at block finalization) which is `Some`
|
||||||
/// if per-block initialization has already been called for current block.
|
/// if per-block initialization has already been called for current block.
|
||||||
Initialized get(fn initialized): Option<MaybeVrf>;
|
Initialized get(fn initialized): Option<MaybeRandomness>;
|
||||||
|
|
||||||
/// How late the current block is compared to its parent.
|
/// How late the current block is compared to its parent.
|
||||||
///
|
///
|
||||||
@@ -194,8 +195,8 @@ decl_module! {
|
|||||||
// that this block was the first in a new epoch, the changeover logic has
|
// that this block was the first in a new epoch, the changeover logic has
|
||||||
// already occurred at this point, so the under-construction randomness
|
// already occurred at this point, so the under-construction randomness
|
||||||
// will only contain outputs from the right epoch.
|
// will only contain outputs from the right epoch.
|
||||||
if let Some(Some(vrf_output)) = Initialized::take() {
|
if let Some(Some(randomness)) = Initialized::take() {
|
||||||
Self::deposit_vrf_output(&vrf_output);
|
Self::deposit_randomness(&randomness);
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove temporary "environment" entry from storage
|
// remove temporary "environment" entry from storage
|
||||||
@@ -238,7 +239,7 @@ impl<T: Trait> FindAuthor<u32> for Module<T> {
|
|||||||
{
|
{
|
||||||
for (id, mut data) in digests.into_iter() {
|
for (id, mut data) in digests.into_iter() {
|
||||||
if id == BABE_ENGINE_ID {
|
if id == BABE_ENGINE_ID {
|
||||||
let pre_digest: RawPreDigest = RawPreDigest::decode(&mut data).ok()?;
|
let pre_digest: PreDigest = PreDigest::decode(&mut data).ok()?;
|
||||||
return Some(pre_digest.authority_index())
|
return Some(pre_digest.authority_index())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -415,17 +416,17 @@ impl<T: Trait> Module<T> {
|
|||||||
<frame_system::Module<T>>::deposit_log(log.into())
|
<frame_system::Module<T>>::deposit_log(log.into())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn deposit_vrf_output(vrf_output: &schnorrkel::RawVRFOutput) {
|
fn deposit_randomness(randomness: &schnorrkel::Randomness) {
|
||||||
let segment_idx = <SegmentIndex>::get();
|
let segment_idx = <SegmentIndex>::get();
|
||||||
let mut segment = <UnderConstruction>::get(&segment_idx);
|
let mut segment = <UnderConstruction>::get(&segment_idx);
|
||||||
if segment.len() < UNDER_CONSTRUCTION_SEGMENT_LENGTH {
|
if segment.len() < UNDER_CONSTRUCTION_SEGMENT_LENGTH {
|
||||||
// push onto current segment: not full.
|
// push onto current segment: not full.
|
||||||
segment.push(*vrf_output);
|
segment.push(*randomness);
|
||||||
<UnderConstruction>::insert(&segment_idx, &segment);
|
<UnderConstruction>::insert(&segment_idx, &segment);
|
||||||
} else {
|
} else {
|
||||||
// move onto the next segment and update the index.
|
// move onto the next segment and update the index.
|
||||||
let segment_idx = segment_idx + 1;
|
let segment_idx = segment_idx + 1;
|
||||||
<UnderConstruction>::insert(&segment_idx, &vec![vrf_output.clone()]);
|
<UnderConstruction>::insert(&segment_idx, &vec![randomness.clone()]);
|
||||||
<SegmentIndex>::put(&segment_idx);
|
<SegmentIndex>::put(&segment_idx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -438,18 +439,18 @@ impl<T: Trait> Module<T> {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let maybe_pre_digest: Option<RawPreDigest> = <frame_system::Module<T>>::digest()
|
let maybe_pre_digest: Option<PreDigest> = <frame_system::Module<T>>::digest()
|
||||||
.logs
|
.logs
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|s| s.as_pre_runtime())
|
.filter_map(|s| s.as_pre_runtime())
|
||||||
.filter_map(|(id, mut data)| if id == BABE_ENGINE_ID {
|
.filter_map(|(id, mut data)| if id == BABE_ENGINE_ID {
|
||||||
RawPreDigest::decode(&mut data).ok()
|
PreDigest::decode(&mut data).ok()
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
})
|
})
|
||||||
.next();
|
.next();
|
||||||
|
|
||||||
let maybe_vrf = maybe_pre_digest.and_then(|digest| {
|
let maybe_randomness: Option<schnorrkel::Randomness> = maybe_pre_digest.and_then(|digest| {
|
||||||
// on the first non-zero block (i.e. block #1)
|
// on the first non-zero block (i.e. block #1)
|
||||||
// this is where the first epoch (epoch #0) actually starts.
|
// this is where the first epoch (epoch #0) actually starts.
|
||||||
// we need to adjust internal storage accordingly.
|
// we need to adjust internal storage accordingly.
|
||||||
@@ -478,17 +479,38 @@ impl<T: Trait> Module<T> {
|
|||||||
Lateness::<T>::put(lateness);
|
Lateness::<T>::put(lateness);
|
||||||
CurrentSlot::put(current_slot);
|
CurrentSlot::put(current_slot);
|
||||||
|
|
||||||
if let RawPreDigest::Primary(primary) = digest {
|
if let PreDigest::Primary(primary) = digest {
|
||||||
// place the VRF output into the `Initialized` storage item
|
// place the VRF output into the `Initialized` storage item
|
||||||
// and it'll be put onto the under-construction randomness
|
// and it'll be put onto the under-construction randomness
|
||||||
// later, once we've decided which epoch this block is in.
|
// later, once we've decided which epoch this block is in.
|
||||||
Some(primary.vrf_output)
|
//
|
||||||
|
// Reconstruct the bytes of VRFInOut using the authority id.
|
||||||
|
Authorities::get()
|
||||||
|
.get(primary.authority_index as usize)
|
||||||
|
.and_then(|author| {
|
||||||
|
schnorrkel::PublicKey::from_bytes(author.0.as_slice()).ok()
|
||||||
|
})
|
||||||
|
.and_then(|pubkey| {
|
||||||
|
let transcript = sp_consensus_babe::make_transcript(
|
||||||
|
&Self::randomness(),
|
||||||
|
current_slot,
|
||||||
|
EpochIndex::get(),
|
||||||
|
);
|
||||||
|
|
||||||
|
primary.vrf_output.0.attach_input_hash(
|
||||||
|
&pubkey,
|
||||||
|
transcript
|
||||||
|
).ok()
|
||||||
|
})
|
||||||
|
.map(|inout| {
|
||||||
|
inout.make_bytes(&sp_consensus_babe::BABE_VRF_INOUT_CONTEXT)
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Initialized::put(maybe_vrf);
|
Initialized::put(maybe_randomness);
|
||||||
|
|
||||||
// enact epoch change, if necessary.
|
// enact epoch change, if necessary.
|
||||||
T::EpochChangeTrigger::trigger::<T>(now)
|
T::EpochChangeTrigger::trigger::<T>(now)
|
||||||
@@ -577,7 +599,7 @@ impl<T: Trait> pallet_session::OneSessionHandler<T::AccountId> for Module<T> {
|
|||||||
fn compute_randomness(
|
fn compute_randomness(
|
||||||
last_epoch_randomness: schnorrkel::Randomness,
|
last_epoch_randomness: schnorrkel::Randomness,
|
||||||
epoch_index: u64,
|
epoch_index: u64,
|
||||||
rho: impl Iterator<Item=schnorrkel::RawVRFOutput>,
|
rho: impl Iterator<Item=schnorrkel::Randomness>,
|
||||||
rho_size_hint: Option<usize>,
|
rho_size_hint: Option<usize>,
|
||||||
) -> schnorrkel::Randomness {
|
) -> schnorrkel::Randomness {
|
||||||
let mut s = Vec::with_capacity(40 + rho_size_hint.unwrap_or(0) * VRF_OUTPUT_LENGTH);
|
let mut s = Vec::with_capacity(40 + rho_size_hint.unwrap_or(0) * VRF_OUTPUT_LENGTH);
|
||||||
|
|||||||
@@ -30,11 +30,12 @@ use frame_support::{
|
|||||||
weights::Weight,
|
weights::Weight,
|
||||||
};
|
};
|
||||||
use sp_io;
|
use sp_io;
|
||||||
use sp_core::H256;
|
use sp_core::{H256, U256, crypto::Pair};
|
||||||
use sp_consensus_vrf::schnorrkel::{RawVRFOutput, RawVRFProof};
|
use sp_consensus_babe::AuthorityPair;
|
||||||
|
use sp_consensus_vrf::schnorrkel::{VRFOutput, VRFProof};
|
||||||
|
|
||||||
impl_outer_origin!{
|
impl_outer_origin!{
|
||||||
pub enum Origin for Test where system = frame_system {}
|
pub enum Origin for Test where system = frame_system {}
|
||||||
}
|
}
|
||||||
|
|
||||||
type DummyValidatorId = u64;
|
type DummyValidatorId = u64;
|
||||||
@@ -109,16 +110,20 @@ impl Trait for Test {
|
|||||||
type EpochChangeTrigger = crate::ExternalTrigger;
|
type EpochChangeTrigger = crate::ExternalTrigger;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new_test_ext(authorities: Vec<DummyValidatorId>) -> sp_io::TestExternalities {
|
pub fn new_test_ext(authorities_len: usize) -> (Vec<AuthorityPair>, sp_io::TestExternalities) {
|
||||||
|
let pairs = (0..authorities_len).map(|i| {
|
||||||
|
AuthorityPair::from_seed(&U256::from(i).into())
|
||||||
|
}).collect::<Vec<_>>();
|
||||||
|
|
||||||
let mut t = frame_system::GenesisConfig::default().build_storage::<Test>().unwrap();
|
let mut t = frame_system::GenesisConfig::default().build_storage::<Test>().unwrap();
|
||||||
GenesisConfig {
|
GenesisConfig {
|
||||||
authorities: authorities.into_iter().map(|a| (UintAuthorityId(a).to_public_key(), 1)).collect(),
|
authorities: pairs.iter().map(|a| (a.public(), 1)).collect(),
|
||||||
}.assimilate_storage::<Test>(&mut t).unwrap();
|
}.assimilate_storage::<Test>(&mut t).unwrap();
|
||||||
t.into()
|
(pairs, t.into())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn go_to_block(n: u64, s: u64) {
|
pub fn go_to_block(n: u64, s: u64) {
|
||||||
let pre_digest = make_pre_digest(0, s, RawVRFOutput([1; 32]), RawVRFProof([0xff; 64]));
|
let pre_digest = make_secondary_plain_pre_digest(0, s);
|
||||||
System::initialize(&n, &Default::default(), &Default::default(), &pre_digest, InitKind::Full);
|
System::initialize(&n, &Default::default(), &Default::default(), &pre_digest, InitKind::Full);
|
||||||
System::set_block_number(n);
|
System::set_block_number(n);
|
||||||
if s > 1 {
|
if s > 1 {
|
||||||
@@ -140,11 +145,11 @@ pub fn progress_to_block(n: u64) {
|
|||||||
pub fn make_pre_digest(
|
pub fn make_pre_digest(
|
||||||
authority_index: sp_consensus_babe::AuthorityIndex,
|
authority_index: sp_consensus_babe::AuthorityIndex,
|
||||||
slot_number: sp_consensus_babe::SlotNumber,
|
slot_number: sp_consensus_babe::SlotNumber,
|
||||||
vrf_output: RawVRFOutput,
|
vrf_output: VRFOutput,
|
||||||
vrf_proof: RawVRFProof,
|
vrf_proof: VRFProof,
|
||||||
) -> Digest {
|
) -> Digest {
|
||||||
let digest_data = sp_consensus_babe::digests::RawPreDigest::Primary(
|
let digest_data = sp_consensus_babe::digests::PreDigest::Primary(
|
||||||
sp_consensus_babe::digests::RawPrimaryPreDigest {
|
sp_consensus_babe::digests::PrimaryPreDigest {
|
||||||
authority_index,
|
authority_index,
|
||||||
slot_number,
|
slot_number,
|
||||||
vrf_output,
|
vrf_output,
|
||||||
@@ -155,6 +160,20 @@ pub fn make_pre_digest(
|
|||||||
Digest { logs: vec![log] }
|
Digest { logs: vec![log] }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn make_secondary_plain_pre_digest(
|
||||||
|
authority_index: sp_consensus_babe::AuthorityIndex,
|
||||||
|
slot_number: sp_consensus_babe::SlotNumber,
|
||||||
|
) -> Digest {
|
||||||
|
let digest_data = sp_consensus_babe::digests::PreDigest::SecondaryPlain(
|
||||||
|
sp_consensus_babe::digests::SecondaryPlainPreDigest {
|
||||||
|
authority_index,
|
||||||
|
slot_number,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
let log = DigestItem::PreRuntime(sp_consensus_babe::BABE_ENGINE_ID, digest_data.encode());
|
||||||
|
Digest { logs: vec![log] }
|
||||||
|
}
|
||||||
|
|
||||||
pub type System = frame_system::Module<Test>;
|
pub type System = frame_system::Module<Test>;
|
||||||
pub type Babe = Module<Test>;
|
pub type Babe = Module<Test>;
|
||||||
pub type Session = pallet_session::Module<Test>;
|
pub type Session = pallet_session::Module<Test>;
|
||||||
|
|||||||
@@ -20,7 +20,8 @@ use super::*;
|
|||||||
use mock::*;
|
use mock::*;
|
||||||
use frame_support::traits::OnFinalize;
|
use frame_support::traits::OnFinalize;
|
||||||
use pallet_session::ShouldEndSession;
|
use pallet_session::ShouldEndSession;
|
||||||
use sp_consensus_vrf::schnorrkel::{RawVRFOutput, RawVRFProof};
|
use sp_core::crypto::IsWrappedBy;
|
||||||
|
use sp_consensus_vrf::schnorrkel::{VRFOutput, VRFProof};
|
||||||
|
|
||||||
const EMPTY_RANDOMNESS: [u8; 32] = [
|
const EMPTY_RANDOMNESS: [u8; 32] = [
|
||||||
74, 25, 49, 128, 53, 97, 244, 49,
|
74, 25, 49, 128, 53, 97, 244, 49,
|
||||||
@@ -37,14 +38,14 @@ fn empty_randomness_is_correct() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn initial_values() {
|
fn initial_values() {
|
||||||
new_test_ext(vec![0, 1, 2, 3]).execute_with(|| {
|
new_test_ext(4).1.execute_with(|| {
|
||||||
assert_eq!(Babe::authorities().len(), 4)
|
assert_eq!(Babe::authorities().len(), 4)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn check_module() {
|
fn check_module() {
|
||||||
new_test_ext(vec![0, 1, 2, 3]).execute_with(|| {
|
new_test_ext(4).1.execute_with(|| {
|
||||||
assert!(!Babe::should_end_session(0), "Genesis does not change sessions");
|
assert!(!Babe::should_end_session(0), "Genesis does not change sessions");
|
||||||
assert!(!Babe::should_end_session(200000),
|
assert!(!Babe::should_end_session(200000),
|
||||||
"BABE does not include the block number in epoch calculations");
|
"BABE does not include the block number in epoch calculations");
|
||||||
@@ -53,14 +54,29 @@ fn check_module() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn first_block_epoch_zero_start() {
|
fn first_block_epoch_zero_start() {
|
||||||
new_test_ext(vec![0, 1, 2, 3]).execute_with(|| {
|
let (pairs, mut ext) = new_test_ext(4);
|
||||||
|
|
||||||
|
ext.execute_with(|| {
|
||||||
let genesis_slot = 100;
|
let genesis_slot = 100;
|
||||||
let first_vrf = RawVRFOutput([1; 32]);
|
|
||||||
|
let pair = sp_core::sr25519::Pair::from_ref(&pairs[0]).as_ref();
|
||||||
|
let transcript = sp_consensus_babe::make_transcript(
|
||||||
|
&Babe::randomness(),
|
||||||
|
genesis_slot,
|
||||||
|
0,
|
||||||
|
);
|
||||||
|
let vrf_inout = pair.vrf_sign(transcript);
|
||||||
|
let vrf_randomness: sp_consensus_vrf::schnorrkel::Randomness = vrf_inout.0
|
||||||
|
.make_bytes::<[u8; 32]>(&sp_consensus_babe::BABE_VRF_INOUT_CONTEXT);
|
||||||
|
let vrf_output = VRFOutput(vrf_inout.0.to_output());
|
||||||
|
let vrf_proof = VRFProof(vrf_inout.1);
|
||||||
|
|
||||||
|
let first_vrf = vrf_output;
|
||||||
let pre_digest = make_pre_digest(
|
let pre_digest = make_pre_digest(
|
||||||
0,
|
0,
|
||||||
genesis_slot,
|
genesis_slot,
|
||||||
first_vrf.clone(),
|
first_vrf.clone(),
|
||||||
RawVRFProof([0xff; 64]),
|
vrf_proof,
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(Babe::genesis_slot(), 0);
|
assert_eq!(Babe::genesis_slot(), 0);
|
||||||
@@ -83,7 +99,7 @@ fn first_block_epoch_zero_start() {
|
|||||||
let header = System::finalize();
|
let header = System::finalize();
|
||||||
|
|
||||||
assert_eq!(SegmentIndex::get(), 0);
|
assert_eq!(SegmentIndex::get(), 0);
|
||||||
assert_eq!(UnderConstruction::get(0), vec![first_vrf]);
|
assert_eq!(UnderConstruction::get(0), vec![vrf_randomness]);
|
||||||
assert_eq!(Babe::randomness(), [0; 32]);
|
assert_eq!(Babe::randomness(), [0; 32]);
|
||||||
assert_eq!(NextRandomness::get(), [0; 32]);
|
assert_eq!(NextRandomness::get(), [0; 32]);
|
||||||
|
|
||||||
@@ -91,10 +107,9 @@ fn first_block_epoch_zero_start() {
|
|||||||
assert_eq!(pre_digest.logs.len(), 1);
|
assert_eq!(pre_digest.logs.len(), 1);
|
||||||
assert_eq!(header.digest.logs[0], pre_digest.logs[0]);
|
assert_eq!(header.digest.logs[0], pre_digest.logs[0]);
|
||||||
|
|
||||||
let authorities = Babe::authorities();
|
|
||||||
let consensus_log = sp_consensus_babe::ConsensusLog::NextEpochData(
|
let consensus_log = sp_consensus_babe::ConsensusLog::NextEpochData(
|
||||||
sp_consensus_babe::digests::NextEpochDescriptor {
|
sp_consensus_babe::digests::NextEpochDescriptor {
|
||||||
authorities,
|
authorities: Babe::authorities(),
|
||||||
randomness: Babe::randomness(),
|
randomness: Babe::randomness(),
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -107,7 +122,7 @@ fn first_block_epoch_zero_start() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn authority_index() {
|
fn authority_index() {
|
||||||
new_test_ext(vec![0, 1, 2, 3]).execute_with(|| {
|
new_test_ext(4).1.execute_with(|| {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
Babe::find_author((&[(BABE_ENGINE_ID, &[][..])]).into_iter().cloned()), None,
|
Babe::find_author((&[(BABE_ENGINE_ID, &[][..])]).into_iter().cloned()), None,
|
||||||
"Trivially invalid authorities are ignored")
|
"Trivially invalid authorities are ignored")
|
||||||
@@ -116,7 +131,7 @@ fn authority_index() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn can_predict_next_epoch_change() {
|
fn can_predict_next_epoch_change() {
|
||||||
new_test_ext(vec![]).execute_with(|| {
|
new_test_ext(0).1.execute_with(|| {
|
||||||
assert_eq!(<Test as Trait>::EpochDuration::get(), 3);
|
assert_eq!(<Test as Trait>::EpochDuration::get(), 3);
|
||||||
// this sets the genesis slot to 6;
|
// this sets the genesis slot to 6;
|
||||||
go_to_block(1, 6);
|
go_to_block(1, 6);
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
sp-application-crypto = { version = "2.0.0-dev", default-features = false, path = "../../application-crypto" }
|
sp-application-crypto = { version = "2.0.0-dev", default-features = false, path = "../../application-crypto" }
|
||||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||||
|
merlin = { version = "2.0", default-features = false }
|
||||||
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../std" }
|
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../std" }
|
||||||
sp-api = { version = "2.0.0-dev", default-features = false, path = "../../api" }
|
sp-api = { version = "2.0.0-dev", default-features = false, path = "../../api" }
|
||||||
sp-consensus = { version = "0.8.0-dev", optional = true, path = "../common" }
|
sp-consensus = { version = "0.8.0-dev", optional = true, path = "../common" }
|
||||||
@@ -27,6 +28,7 @@ default = ["std"]
|
|||||||
std = [
|
std = [
|
||||||
"sp-application-crypto/std",
|
"sp-application-crypto/std",
|
||||||
"codec/std",
|
"codec/std",
|
||||||
|
"merlin/std",
|
||||||
"sp-std/std",
|
"sp-std/std",
|
||||||
"sp-api/std",
|
"sp-api/std",
|
||||||
"sp-consensus",
|
"sp-consensus",
|
||||||
|
|||||||
@@ -22,19 +22,17 @@ use super::{AuthorityId, AuthorityIndex, SlotNumber, BabeAuthorityWeight, BabeEp
|
|||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use sp_runtime::{DigestItem, generic::OpaqueDigestItemId};
|
use sp_runtime::{DigestItem, generic::OpaqueDigestItemId};
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use std::{fmt::Debug, convert::{TryFrom, TryInto}};
|
use std::fmt::Debug;
|
||||||
use codec::{Decode, Encode};
|
use codec::{Decode, Encode};
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use codec::Codec;
|
use codec::Codec;
|
||||||
use sp_std::vec::Vec;
|
use sp_std::vec::Vec;
|
||||||
use sp_runtime::RuntimeDebug;
|
use sp_runtime::RuntimeDebug;
|
||||||
use sp_consensus_vrf::schnorrkel::{self, Randomness};
|
use sp_consensus_vrf::schnorrkel::{Randomness, VRFOutput, VRFProof};
|
||||||
#[cfg(feature = "std")]
|
|
||||||
use sp_consensus_vrf::schnorrkel::SignatureError;
|
|
||||||
|
|
||||||
/// Raw BABE primary slot assignment pre-digest.
|
/// Raw BABE primary slot assignment pre-digest.
|
||||||
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
||||||
pub struct RawPrimaryPreDigest<VRFOutput=schnorrkel::RawVRFOutput, VRFProof=schnorrkel::RawVRFProof> {
|
pub struct PrimaryPreDigest {
|
||||||
/// Authority index
|
/// Authority index
|
||||||
pub authority_index: super::AuthorityIndex,
|
pub authority_index: super::AuthorityIndex,
|
||||||
/// Slot number
|
/// Slot number
|
||||||
@@ -45,24 +43,6 @@ pub struct RawPrimaryPreDigest<VRFOutput=schnorrkel::RawVRFOutput, VRFProof=schn
|
|||||||
pub vrf_proof: VRFProof,
|
pub vrf_proof: VRFProof,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
/// BABE primary slot assignment pre-digest for std environment.
|
|
||||||
pub type PrimaryPreDigest = RawPrimaryPreDigest<schnorrkel::VRFOutput, schnorrkel::VRFProof>;
|
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<RawPrimaryPreDigest> for PrimaryPreDigest {
|
|
||||||
type Error = SignatureError;
|
|
||||||
|
|
||||||
fn try_from(raw: RawPrimaryPreDigest) -> Result<PrimaryPreDigest, SignatureError> {
|
|
||||||
Ok(PrimaryPreDigest {
|
|
||||||
authority_index: raw.authority_index,
|
|
||||||
slot_number: raw.slot_number,
|
|
||||||
vrf_output: raw.vrf_output.try_into()?,
|
|
||||||
vrf_proof: raw.vrf_proof.try_into()?,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// BABE secondary slot assignment pre-digest.
|
/// BABE secondary slot assignment pre-digest.
|
||||||
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
||||||
pub struct SecondaryPlainPreDigest {
|
pub struct SecondaryPlainPreDigest {
|
||||||
@@ -79,7 +59,7 @@ pub struct SecondaryPlainPreDigest {
|
|||||||
|
|
||||||
/// BABE secondary deterministic slot assignment with VRF outputs.
|
/// BABE secondary deterministic slot assignment with VRF outputs.
|
||||||
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
||||||
pub struct RawSecondaryVRFPreDigest<VRFOutput=schnorrkel::RawVRFOutput, VRFProof=schnorrkel::RawVRFProof> {
|
pub struct SecondaryVRFPreDigest {
|
||||||
/// Authority index
|
/// Authority index
|
||||||
pub authority_index: super::AuthorityIndex,
|
pub authority_index: super::AuthorityIndex,
|
||||||
/// Slot number
|
/// Slot number
|
||||||
@@ -90,60 +70,38 @@ pub struct RawSecondaryVRFPreDigest<VRFOutput=schnorrkel::RawVRFOutput, VRFProof
|
|||||||
pub vrf_proof: VRFProof,
|
pub vrf_proof: VRFProof,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
/// BABE secondary slot assignment with VRF outputs pre-digest, for std environment.
|
|
||||||
pub type SecondaryVRFPreDigest = RawSecondaryVRFPreDigest<schnorrkel::VRFOutput, schnorrkel::VRFProof>;
|
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<RawSecondaryVRFPreDigest> for SecondaryVRFPreDigest {
|
|
||||||
type Error = SignatureError;
|
|
||||||
|
|
||||||
fn try_from(raw: RawSecondaryVRFPreDigest) -> Result<SecondaryVRFPreDigest, SignatureError> {
|
|
||||||
Ok(SecondaryVRFPreDigest {
|
|
||||||
authority_index: raw.authority_index,
|
|
||||||
slot_number: raw.slot_number,
|
|
||||||
vrf_output: raw.vrf_output.try_into()?,
|
|
||||||
vrf_proof: raw.vrf_proof.try_into()?,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A BABE pre-runtime digest. This contains all data required to validate a
|
/// A BABE pre-runtime digest. This contains all data required to validate a
|
||||||
/// block and for the BABE runtime module. Slots can be assigned to a primary
|
/// block and for the BABE runtime module. Slots can be assigned to a primary
|
||||||
/// (VRF based) and to a secondary (slot number based).
|
/// (VRF based) and to a secondary (slot number based).
|
||||||
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
#[derive(Clone, RuntimeDebug, Encode, Decode)]
|
||||||
pub enum RawPreDigest<VRFOutput=schnorrkel::RawVRFOutput, VRFProof=schnorrkel::RawVRFProof> {
|
pub enum PreDigest {
|
||||||
/// A primary VRF-based slot assignment.
|
/// A primary VRF-based slot assignment.
|
||||||
#[codec(index = "1")]
|
#[codec(index = "1")]
|
||||||
Primary(RawPrimaryPreDigest<VRFOutput, VRFProof>),
|
Primary(PrimaryPreDigest),
|
||||||
/// A secondary deterministic slot assignment.
|
/// A secondary deterministic slot assignment.
|
||||||
#[codec(index = "2")]
|
#[codec(index = "2")]
|
||||||
SecondaryPlain(SecondaryPlainPreDigest),
|
SecondaryPlain(SecondaryPlainPreDigest),
|
||||||
/// A secondary deterministic slot assignment with VRF outputs.
|
/// A secondary deterministic slot assignment with VRF outputs.
|
||||||
#[codec(index = "3")]
|
#[codec(index = "3")]
|
||||||
SecondaryVRF(RawSecondaryVRFPreDigest<VRFOutput, VRFProof>),
|
SecondaryVRF(SecondaryVRFPreDigest),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
impl PreDigest {
|
||||||
/// A BABE pre-runtime digest for std.
|
|
||||||
pub type PreDigest = RawPreDigest<schnorrkel::VRFOutput, schnorrkel::VRFProof>;
|
|
||||||
|
|
||||||
impl<VRFOutput, VRFProof> RawPreDigest<VRFOutput, VRFProof> {
|
|
||||||
/// Returns the slot number of the pre digest.
|
/// Returns the slot number of the pre digest.
|
||||||
pub fn authority_index(&self) -> AuthorityIndex {
|
pub fn authority_index(&self) -> AuthorityIndex {
|
||||||
match self {
|
match self {
|
||||||
RawPreDigest::Primary(primary) => primary.authority_index,
|
PreDigest::Primary(primary) => primary.authority_index,
|
||||||
RawPreDigest::SecondaryPlain(secondary) => secondary.authority_index,
|
PreDigest::SecondaryPlain(secondary) => secondary.authority_index,
|
||||||
RawPreDigest::SecondaryVRF(secondary) => secondary.authority_index,
|
PreDigest::SecondaryVRF(secondary) => secondary.authority_index,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the slot number of the pre digest.
|
/// Returns the slot number of the pre digest.
|
||||||
pub fn slot_number(&self) -> SlotNumber {
|
pub fn slot_number(&self) -> SlotNumber {
|
||||||
match self {
|
match self {
|
||||||
RawPreDigest::Primary(primary) => primary.slot_number,
|
PreDigest::Primary(primary) => primary.slot_number,
|
||||||
RawPreDigest::SecondaryPlain(secondary) => secondary.slot_number,
|
PreDigest::SecondaryPlain(secondary) => secondary.slot_number,
|
||||||
RawPreDigest::SecondaryVRF(secondary) => secondary.slot_number,
|
PreDigest::SecondaryVRF(secondary) => secondary.slot_number,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,25 +109,12 @@ impl<VRFOutput, VRFProof> RawPreDigest<VRFOutput, VRFProof> {
|
|||||||
/// of the chain.
|
/// of the chain.
|
||||||
pub fn added_weight(&self) -> crate::BabeBlockWeight {
|
pub fn added_weight(&self) -> crate::BabeBlockWeight {
|
||||||
match self {
|
match self {
|
||||||
RawPreDigest::Primary(_) => 1,
|
PreDigest::Primary(_) => 1,
|
||||||
RawPreDigest::SecondaryPlain(_) | RawPreDigest::SecondaryVRF(_) => 0,
|
PreDigest::SecondaryPlain(_) | PreDigest::SecondaryVRF(_) => 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<RawPreDigest> for PreDigest {
|
|
||||||
type Error = SignatureError;
|
|
||||||
|
|
||||||
fn try_from(raw: RawPreDigest) -> Result<PreDigest, SignatureError> {
|
|
||||||
Ok(match raw {
|
|
||||||
RawPreDigest::Primary(primary) => PreDigest::Primary(primary.try_into()?),
|
|
||||||
RawPreDigest::SecondaryPlain(secondary) => PreDigest::SecondaryPlain(secondary),
|
|
||||||
RawPreDigest::SecondaryVRF(secondary) => PreDigest::SecondaryVRF(secondary.try_into()?),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Information about the next epoch. This is broadcast in the first block
|
/// Information about the next epoch. This is broadcast in the first block
|
||||||
/// of the epoch.
|
/// of the epoch.
|
||||||
#[derive(Decode, Encode, PartialEq, Eq, Clone, RuntimeDebug)]
|
#[derive(Decode, Encode, PartialEq, Eq, Clone, RuntimeDebug)]
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ pub mod inherents;
|
|||||||
pub use sp_consensus_vrf::schnorrkel::{
|
pub use sp_consensus_vrf::schnorrkel::{
|
||||||
Randomness, VRF_PROOF_LENGTH, VRF_OUTPUT_LENGTH, RANDOMNESS_LENGTH
|
Randomness, VRF_PROOF_LENGTH, VRF_OUTPUT_LENGTH, RANDOMNESS_LENGTH
|
||||||
};
|
};
|
||||||
|
pub use merlin::Transcript;
|
||||||
|
|
||||||
use codec::{Encode, Decode};
|
use codec::{Encode, Decode};
|
||||||
use sp_std::vec::Vec;
|
use sp_std::vec::Vec;
|
||||||
@@ -39,6 +40,9 @@ mod app {
|
|||||||
/// The prefix used by BABE for its VRF keys.
|
/// The prefix used by BABE for its VRF keys.
|
||||||
pub const BABE_VRF_PREFIX: &[u8] = b"substrate-babe-vrf";
|
pub const BABE_VRF_PREFIX: &[u8] = b"substrate-babe-vrf";
|
||||||
|
|
||||||
|
/// BABE VRFInOut context.
|
||||||
|
pub static BABE_VRF_INOUT_CONTEXT: &[u8] = b"BabeVRFInOutContext";
|
||||||
|
|
||||||
/// A Babe authority keypair. Necessarily equivalent to the schnorrkel public key used in
|
/// A Babe authority keypair. Necessarily equivalent to the schnorrkel public key used in
|
||||||
/// the main Babe module. If that ever changes, then this must, too.
|
/// the main Babe module. If that ever changes, then this must, too.
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
@@ -76,6 +80,19 @@ pub type BabeAuthorityWeight = u64;
|
|||||||
/// The weight of a BABE block.
|
/// The weight of a BABE block.
|
||||||
pub type BabeBlockWeight = u32;
|
pub type BabeBlockWeight = u32;
|
||||||
|
|
||||||
|
/// Make a VRF transcript from given randomness, slot number and epoch.
|
||||||
|
pub fn make_transcript(
|
||||||
|
randomness: &Randomness,
|
||||||
|
slot_number: u64,
|
||||||
|
epoch: u64,
|
||||||
|
) -> Transcript {
|
||||||
|
let mut transcript = Transcript::new(&BABE_ENGINE_ID);
|
||||||
|
transcript.append_u64(b"slot number", slot_number);
|
||||||
|
transcript.append_u64(b"current epoch", epoch);
|
||||||
|
transcript.append_message(b"chain randomness", &randomness[..]);
|
||||||
|
transcript
|
||||||
|
}
|
||||||
|
|
||||||
/// An consensus log item for BABE.
|
/// An consensus log item for BABE.
|
||||||
#[derive(Decode, Encode, Clone, PartialEq, Eq)]
|
#[derive(Decode, Encode, Clone, PartialEq, Eq)]
|
||||||
pub enum ConsensusLog {
|
pub enum ConsensusLog {
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { version = "1.0.0", package = "parity-scale-codec", default-features = false }
|
codec = { version = "1.0.0", package = "parity-scale-codec", default-features = false }
|
||||||
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated"], optional = true }
|
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false }
|
||||||
sp-std = { version = "2.0.0-dev", path = "../../std", default-features = false }
|
sp-std = { version = "2.0.0-dev", path = "../../std", default-features = false }
|
||||||
sp-core = { version = "2.0.0-dev", path = "../../core", default-features = false }
|
sp-core = { version = "2.0.0-dev", path = "../../core", default-features = false }
|
||||||
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../runtime" }
|
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../runtime" }
|
||||||
@@ -22,7 +22,7 @@ sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../ru
|
|||||||
default = ["std"]
|
default = ["std"]
|
||||||
std = [
|
std = [
|
||||||
"codec/std",
|
"codec/std",
|
||||||
"schnorrkel",
|
"schnorrkel/std",
|
||||||
"sp-std/std",
|
"sp-std/std",
|
||||||
"sp-core/std",
|
"sp-core/std",
|
||||||
"sp-runtime/std",
|
"sp-runtime/std",
|
||||||
|
|||||||
@@ -16,72 +16,38 @@
|
|||||||
|
|
||||||
//! Schnorrkel-based VRF.
|
//! Schnorrkel-based VRF.
|
||||||
|
|
||||||
use codec::{Encode, Decode};
|
use codec::{Encode, Decode, EncodeLike};
|
||||||
use sp_runtime::RuntimeDebug;
|
use sp_std::{convert::TryFrom, prelude::*};
|
||||||
use sp_std::ops::{Deref, DerefMut};
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
use std::convert::TryFrom;
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
use codec::EncodeLike;
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
use schnorrkel::errors::MultiSignatureStage;
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
use sp_core::U512;
|
use sp_core::U512;
|
||||||
|
use sp_std::ops::{Deref, DerefMut};
|
||||||
|
use schnorrkel::errors::MultiSignatureStage;
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
pub use schnorrkel::{SignatureError, PublicKey, vrf::{VRF_PROOF_LENGTH, VRF_OUTPUT_LENGTH}};
|
||||||
pub use schnorrkel::{SignatureError, vrf::{VRF_PROOF_LENGTH, VRF_OUTPUT_LENGTH}};
|
|
||||||
|
|
||||||
/// The length of the VRF proof.
|
|
||||||
#[cfg(not(feature = "std"))]
|
|
||||||
pub const VRF_PROOF_LENGTH: usize = 64;
|
|
||||||
|
|
||||||
/// The length of the VRF output.
|
|
||||||
#[cfg(not(feature = "std"))]
|
|
||||||
pub const VRF_OUTPUT_LENGTH: usize = 32;
|
|
||||||
|
|
||||||
/// The length of the Randomness.
|
/// The length of the Randomness.
|
||||||
pub const RANDOMNESS_LENGTH: usize = VRF_OUTPUT_LENGTH;
|
pub const RANDOMNESS_LENGTH: usize = VRF_OUTPUT_LENGTH;
|
||||||
|
|
||||||
/// Raw VRF output.
|
|
||||||
#[derive(Clone, Copy, Eq, PartialEq, RuntimeDebug, Encode, Decode)]
|
|
||||||
pub struct RawVRFOutput(pub [u8; VRF_OUTPUT_LENGTH]);
|
|
||||||
|
|
||||||
impl Deref for RawVRFOutput {
|
|
||||||
type Target = [u8; VRF_OUTPUT_LENGTH];
|
|
||||||
fn deref(&self) -> &Self::Target { &self.0 }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DerefMut for RawVRFOutput {
|
|
||||||
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// VRF output type available for `std` environment, suitable for schnorrkel operations.
|
/// VRF output type available for `std` environment, suitable for schnorrkel operations.
|
||||||
#[cfg(feature = "std")]
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct VRFOutput(pub schnorrkel::vrf::VRFOutput);
|
pub struct VRFOutput(pub schnorrkel::vrf::VRFOutput);
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Deref for VRFOutput {
|
impl Deref for VRFOutput {
|
||||||
type Target = schnorrkel::vrf::VRFOutput;
|
type Target = schnorrkel::vrf::VRFOutput;
|
||||||
fn deref(&self) -> &Self::Target { &self.0 }
|
fn deref(&self) -> &Self::Target { &self.0 }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl DerefMut for VRFOutput {
|
impl DerefMut for VRFOutput {
|
||||||
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
|
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Encode for VRFOutput {
|
impl Encode for VRFOutput {
|
||||||
fn encode(&self) -> Vec<u8> {
|
fn encode(&self) -> Vec<u8> {
|
||||||
self.0.as_bytes().encode()
|
self.0.as_bytes().encode()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl EncodeLike for VRFOutput { }
|
impl EncodeLike for VRFOutput { }
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Decode for VRFOutput {
|
impl Decode for VRFOutput {
|
||||||
fn decode<R: codec::Input>(i: &mut R) -> Result<Self, codec::Error> {
|
fn decode<R: codec::Input>(i: &mut R) -> Result<Self, codec::Error> {
|
||||||
let decoded = <[u8; VRF_OUTPUT_LENGTH]>::decode(i)?;
|
let decoded = <[u8; VRF_OUTPUT_LENGTH]>::decode(i)?;
|
||||||
@@ -89,7 +55,6 @@ impl Decode for VRFOutput {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<[u8; VRF_OUTPUT_LENGTH]> for VRFOutput {
|
impl TryFrom<[u8; VRF_OUTPUT_LENGTH]> for VRFOutput {
|
||||||
type Error = SignatureError;
|
type Error = SignatureError;
|
||||||
|
|
||||||
@@ -98,91 +63,39 @@ impl TryFrom<[u8; VRF_OUTPUT_LENGTH]> for VRFOutput {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<RawVRFOutput> for VRFOutput {
|
|
||||||
type Error = SignatureError;
|
|
||||||
|
|
||||||
fn try_from(raw: RawVRFOutput) -> Result<VRFOutput, Self::Error> {
|
|
||||||
schnorrkel::vrf::VRFOutput::from_bytes(&raw.0).map(VRFOutput)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl From<VRFOutput> for RawVRFOutput {
|
|
||||||
fn from(output: VRFOutput) -> RawVRFOutput {
|
|
||||||
RawVRFOutput(output.to_bytes())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Raw VRF proof.
|
|
||||||
#[derive(Clone, Copy, Encode, Decode)]
|
|
||||||
pub struct RawVRFProof(pub [u8; VRF_PROOF_LENGTH]);
|
|
||||||
|
|
||||||
impl Deref for RawVRFProof {
|
|
||||||
type Target = [u8; VRF_PROOF_LENGTH];
|
|
||||||
fn deref(&self) -> &Self::Target { &self.0 }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DerefMut for RawVRFProof {
|
|
||||||
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl std::fmt::Debug for RawVRFProof {
|
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
||||||
write!(f, "{:?}", &self)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl core::cmp::PartialEq for RawVRFProof {
|
|
||||||
fn eq(&self, other: &Self) -> bool {
|
|
||||||
self == other
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl core::cmp::Eq for RawVRFProof { }
|
|
||||||
|
|
||||||
/// VRF proof type available for `std` environment, suitable for schnorrkel operations.
|
/// VRF proof type available for `std` environment, suitable for schnorrkel operations.
|
||||||
#[cfg(feature = "std")]
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct VRFProof(pub schnorrkel::vrf::VRFProof);
|
pub struct VRFProof(pub schnorrkel::vrf::VRFProof);
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl PartialOrd for VRFProof {
|
impl PartialOrd for VRFProof {
|
||||||
fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
|
fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
|
||||||
Some(self.cmp(other))
|
Some(self.cmp(other))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Ord for VRFProof {
|
impl Ord for VRFProof {
|
||||||
fn cmp(&self, other: &Self) -> core::cmp::Ordering {
|
fn cmp(&self, other: &Self) -> core::cmp::Ordering {
|
||||||
U512::from(self.0.to_bytes()).cmp(&U512::from(other.0.to_bytes()))
|
U512::from(self.0.to_bytes()).cmp(&U512::from(other.0.to_bytes()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Deref for VRFProof {
|
impl Deref for VRFProof {
|
||||||
type Target = schnorrkel::vrf::VRFProof;
|
type Target = schnorrkel::vrf::VRFProof;
|
||||||
fn deref(&self) -> &Self::Target { &self.0 }
|
fn deref(&self) -> &Self::Target { &self.0 }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl DerefMut for VRFProof {
|
impl DerefMut for VRFProof {
|
||||||
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
|
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Encode for VRFProof {
|
impl Encode for VRFProof {
|
||||||
fn encode(&self) -> Vec<u8> {
|
fn encode(&self) -> Vec<u8> {
|
||||||
self.0.to_bytes().encode()
|
self.0.to_bytes().encode()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl EncodeLike for VRFProof { }
|
impl EncodeLike for VRFProof { }
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl Decode for VRFProof {
|
impl Decode for VRFProof {
|
||||||
fn decode<R: codec::Input>(i: &mut R) -> Result<Self, codec::Error> {
|
fn decode<R: codec::Input>(i: &mut R) -> Result<Self, codec::Error> {
|
||||||
let decoded = <[u8; VRF_PROOF_LENGTH]>::decode(i)?;
|
let decoded = <[u8; VRF_PROOF_LENGTH]>::decode(i)?;
|
||||||
@@ -190,7 +103,6 @@ impl Decode for VRFProof {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<[u8; VRF_PROOF_LENGTH]> for VRFProof {
|
impl TryFrom<[u8; VRF_PROOF_LENGTH]> for VRFProof {
|
||||||
type Error = SignatureError;
|
type Error = SignatureError;
|
||||||
|
|
||||||
@@ -199,23 +111,6 @@ impl TryFrom<[u8; VRF_PROOF_LENGTH]> for VRFProof {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl TryFrom<RawVRFProof> for VRFProof {
|
|
||||||
type Error = SignatureError;
|
|
||||||
|
|
||||||
fn try_from(raw: RawVRFProof) -> Result<VRFProof, Self::Error> {
|
|
||||||
schnorrkel::vrf::VRFProof::from_bytes(&raw.0).map(VRFProof)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
impl From<VRFProof> for RawVRFProof {
|
|
||||||
fn from(output: VRFProof) -> RawVRFProof {
|
|
||||||
RawVRFProof(output.to_bytes())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
|
||||||
fn convert_error(e: SignatureError) -> codec::Error {
|
fn convert_error(e: SignatureError) -> codec::Error {
|
||||||
use SignatureError::*;
|
use SignatureError::*;
|
||||||
use MultiSignatureStage::*;
|
use MultiSignatureStage::*;
|
||||||
|
|||||||
Reference in New Issue
Block a user