mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 07:48:00 +00:00
78 lines
2.3 KiB
Rust
78 lines
2.3 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2019-2020 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! FRAME module that tracks the last finalized block, as perceived by block authors.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
use sp_inherents::{InherentIdentifier, InherentData, Error};
|
|
use codec::Decode;
|
|
|
|
#[cfg(feature = "std")]
|
|
use codec::Encode;
|
|
|
|
/// The identifier for the `finalnum` inherent.
|
|
pub const INHERENT_IDENTIFIER: InherentIdentifier = *b"finalnum";
|
|
|
|
/// Auxiliary trait to extract finalized inherent data.
|
|
pub trait FinalizedInherentData<N: Decode> {
|
|
/// Get finalized inherent data.
|
|
fn finalized_number(&self) -> Result<N, Error>;
|
|
}
|
|
|
|
impl<N: Decode> FinalizedInherentData<N> for InherentData {
|
|
fn finalized_number(&self) -> Result<N, Error> {
|
|
self.get_data(&INHERENT_IDENTIFIER)
|
|
.and_then(|r| r.ok_or_else(|| "Finalized number inherent data not found".into()))
|
|
}
|
|
}
|
|
|
|
/// Provider for inherent data.
|
|
#[cfg(feature = "std")]
|
|
pub struct InherentDataProvider<F, N> {
|
|
inner: F,
|
|
_marker: std::marker::PhantomData<N>,
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<F, N> InherentDataProvider<F, N> {
|
|
pub fn new(final_oracle: F) -> Self {
|
|
InherentDataProvider { inner: final_oracle, _marker: Default::default() }
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<F, N: Encode> sp_inherents::ProvideInherentData for InherentDataProvider<F, N>
|
|
where F: Fn() -> Result<N, Error>
|
|
{
|
|
fn inherent_identifier(&self) -> &'static InherentIdentifier {
|
|
&INHERENT_IDENTIFIER
|
|
}
|
|
|
|
fn provide_inherent_data(
|
|
&self,
|
|
inherent_data: &mut InherentData,
|
|
) -> Result<(), Error> {
|
|
(self.inner)()
|
|
.and_then(|n| inherent_data.put_data(INHERENT_IDENTIFIER, &n))
|
|
}
|
|
|
|
fn error_to_string(&self, _error: &[u8]) -> Option<String> {
|
|
Some(format!("no further information"))
|
|
}
|
|
}
|