mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-28 14:27:26 +00:00
010e63116f
* Add simple benchmark for the runtime api * Make the executor support native calls * Some documentation * Hide behind `feature = "std"` * Rework the native calls * Make all tests compile again * Make every parameter using the Block serialized/deserialized in the native call * Forward `UnwindSafe` requirement * Remove debug stuff * Add some documentation * Fixes warnings * Fixes errors after master rebase * Fixes compilation after master rebase * Fixes compilation after rebase
83 lines
2.3 KiB
Rust
83 lines
2.3 KiB
Rust
// Copyright 2018 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Chain api required for the transaction pool.
|
|
|
|
use std::{
|
|
sync::Arc,
|
|
marker::PhantomData,
|
|
};
|
|
use client::{runtime_api::TaggedTransactionQueue, blockchain::HeaderBackend};
|
|
use parity_codec::Encode;
|
|
use txpool;
|
|
use substrate_primitives::{
|
|
H256,
|
|
Blake2Hasher,
|
|
Hasher,
|
|
};
|
|
use sr_primitives::{
|
|
generic::BlockId,
|
|
traits,
|
|
transaction_validity::TransactionValidity,
|
|
};
|
|
|
|
use error;
|
|
|
|
/// The transaction pool logic
|
|
pub struct ChainApi<T, Block> {
|
|
client: Arc<T>,
|
|
_marker: PhantomData<Block>,
|
|
}
|
|
|
|
impl<T, Block> ChainApi<T, Block> where
|
|
Block: traits::Block,
|
|
T: traits::ProvideRuntimeApi + HeaderBackend<Block> {
|
|
/// Create new transaction pool logic.
|
|
pub fn new(client: Arc<T>) -> Self {
|
|
ChainApi {
|
|
client,
|
|
_marker: Default::default()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T, Block> txpool::ChainApi for ChainApi<T, Block> where
|
|
Block: traits::Block<Hash=H256>,
|
|
T: traits::ProvideRuntimeApi + HeaderBackend<Block>,
|
|
T::Api: TaggedTransactionQueue<Block>
|
|
{
|
|
type Block = Block;
|
|
type Hash = H256;
|
|
type Error = error::Error;
|
|
|
|
fn validate_transaction(&self, at: &BlockId<Self::Block>, uxt: txpool::ExtrinsicFor<Self>) -> error::Result<TransactionValidity> {
|
|
Ok(self.client.runtime_api().validate_transaction(at, uxt)?)
|
|
}
|
|
|
|
// TODO [toDr] Use proper lbock number type
|
|
fn block_id_to_number(&self, at: &BlockId<Self::Block>) -> error::Result<Option<txpool::NumberFor<Self>>> {
|
|
Ok(self.client.block_number_from_id(at)?)
|
|
}
|
|
|
|
fn block_id_to_hash(&self, at: &BlockId<Self::Block>) -> error::Result<Option<txpool::BlockHash<Self>>> {
|
|
Ok(self.client.block_hash_from_id(at)?)
|
|
}
|
|
|
|
fn hash(&self, ex: &txpool::ExtrinsicFor<Self>) -> Self::Hash {
|
|
Blake2Hasher::hash(&ex.encode())
|
|
}
|
|
}
|