mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 06:57:58 +00:00
1f6719346f
* Make `decl_runtime_apis!` implement `RuntimeApiInfo` for all runtime apis * Make the runtime side generate the info constants as well * Make `RuntimeApiInfo` implementation use the correct generics * Adds a test for the runtime api info stuff * Remove duplicated code by using block from `test-client` * Adds `compile_fail` tests for `api_version` * Adds documentation for `api_version` * Make `impl_runtime_apis!` generate `RUNTIME_API_VERSIONS` * Update documentation and tests for `RUNTIME_API_VERSIONS` * Implement `has_api` by using the `RuntimeApiInfo` * Make `impl_runtime_apis` check that trait identifiers are unique * Prefix all runtime api function with the corresponding trait So `execute_block` will be called `Core_execute_block`. This makes it possible to have traits implement a function with the same name. * Rebase master * Update after master rebase
217 lines
6.6 KiB
Rust
217 lines
6.6 KiB
Rust
// Copyright 2017-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/>.
|
|
|
|
//! Tool for creating the genesis block.
|
|
|
|
use runtime_primitives::traits::{Block as BlockT, Header as HeaderT, Hash as HashT, Zero};
|
|
|
|
/// Create a genesis block, given the initial storage.
|
|
pub fn construct_genesis_block<
|
|
Block: BlockT
|
|
> (
|
|
state_root: Block::Hash
|
|
) -> Block {
|
|
let extrinsics_root = <<<Block as BlockT>::Header as HeaderT>::Hashing as HashT>::trie_root(::std::iter::empty::<(&[u8], &[u8])>());
|
|
Block::new(
|
|
<<Block as BlockT>::Header as HeaderT>::new(
|
|
Zero::zero(),
|
|
extrinsics_root,
|
|
state_root,
|
|
Default::default(),
|
|
Default::default()
|
|
),
|
|
Default::default()
|
|
)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use codec::{Encode, Decode, Joiner};
|
|
use keyring::Keyring;
|
|
use executor::NativeExecutionDispatch;
|
|
use state_machine::{execute, OverlayedChanges, ExecutionStrategy, InMemoryChangesTrieStorage};
|
|
use state_machine::backend::InMemory;
|
|
use test_client;
|
|
use test_client::runtime::genesismap::{GenesisConfig, additional_storage_with_genesis};
|
|
use test_client::runtime::{Hash, Transfer, Block, BlockNumber, Header, Digest, Extrinsic};
|
|
use runtime_primitives::traits::BlakeTwo256;
|
|
use primitives::{Blake2Hasher, ed25519::{Public, Pair}};
|
|
|
|
native_executor_instance!(Executor, test_client::runtime::api::dispatch, test_client::runtime::native_version, include_bytes!("../../test-runtime/wasm/target/wasm32-unknown-unknown/release/substrate_test_runtime.compact.wasm"));
|
|
|
|
fn executor() -> ::executor::NativeExecutor<Executor> {
|
|
NativeExecutionDispatch::new()
|
|
}
|
|
|
|
fn construct_block(
|
|
backend: &InMemory<Blake2Hasher>,
|
|
number: BlockNumber,
|
|
parent_hash: Hash,
|
|
state_root: Hash,
|
|
txs: Vec<Transfer>
|
|
) -> (Vec<u8>, Hash) {
|
|
use trie::ordered_trie_root;
|
|
|
|
let transactions = txs.into_iter().map(|tx| {
|
|
let signature = Pair::from(Keyring::from_public(Public::from_raw(tx.from.to_fixed_bytes())).unwrap())
|
|
.sign(&tx.encode()).into();
|
|
|
|
Extrinsic { transfer: tx, signature }
|
|
}).collect::<Vec<_>>();
|
|
|
|
let extrinsics_root = ordered_trie_root::<Blake2Hasher, _, _>(transactions.iter().map(Encode::encode)).into();
|
|
|
|
println!("root before: {:?}", extrinsics_root);
|
|
let mut header = Header {
|
|
parent_hash,
|
|
number,
|
|
state_root,
|
|
extrinsics_root,
|
|
digest: Digest { logs: vec![], },
|
|
};
|
|
let hash = header.hash();
|
|
let mut overlay = OverlayedChanges::default();
|
|
|
|
execute(
|
|
backend,
|
|
Some(&InMemoryChangesTrieStorage::new()),
|
|
&mut overlay,
|
|
&executor(),
|
|
"Core_initialise_block",
|
|
&header.encode(),
|
|
ExecutionStrategy::NativeWhenPossible,
|
|
).unwrap();
|
|
|
|
for tx in transactions.iter() {
|
|
execute(
|
|
backend,
|
|
Some(&InMemoryChangesTrieStorage::new()),
|
|
&mut overlay,
|
|
&executor(),
|
|
"BlockBuilder_apply_extrinsic",
|
|
&tx.encode(),
|
|
ExecutionStrategy::NativeWhenPossible,
|
|
).unwrap();
|
|
}
|
|
|
|
let (ret_data, _, _) = execute(
|
|
backend,
|
|
Some(&InMemoryChangesTrieStorage::new()),
|
|
&mut overlay,
|
|
&executor(),
|
|
"BlockBuilder_finalise_block",
|
|
&[],
|
|
ExecutionStrategy::NativeWhenPossible,
|
|
).unwrap();
|
|
header = Header::decode(&mut &ret_data[..]).unwrap();
|
|
println!("root after: {:?}", header.extrinsics_root);
|
|
|
|
(vec![].and(&Block { header, extrinsics: transactions }), hash)
|
|
}
|
|
|
|
fn block1(genesis_hash: Hash, backend: &InMemory<Blake2Hasher>) -> (Vec<u8>, Hash) {
|
|
construct_block(
|
|
backend,
|
|
1,
|
|
genesis_hash,
|
|
hex!("25e5b37074063ab75c889326246640729b40d0c86932edc527bc80db0e04fe5c").into(),
|
|
vec![Transfer {
|
|
from: Keyring::One.to_raw_public().into(),
|
|
to: Keyring::Two.to_raw_public().into(),
|
|
amount: 69,
|
|
nonce: 0,
|
|
}]
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn construct_genesis_should_work_with_native() {
|
|
let mut storage = GenesisConfig::new_simple(
|
|
vec![Keyring::One.to_raw_public().into(), Keyring::Two.to_raw_public().into()], 1000
|
|
).genesis_map();
|
|
let state_root = BlakeTwo256::trie_root(storage.clone().into_iter());
|
|
let block = construct_genesis_block::<Block>(state_root);
|
|
let genesis_hash = block.header.hash();
|
|
storage.extend(additional_storage_with_genesis(&block).into_iter());
|
|
|
|
let backend = InMemory::from(storage);
|
|
let (b1data, _b1hash) = block1(genesis_hash, &backend);
|
|
|
|
let mut overlay = OverlayedChanges::default();
|
|
let _ = execute(
|
|
&backend,
|
|
Some(&InMemoryChangesTrieStorage::new()),
|
|
&mut overlay,
|
|
&executor(),
|
|
"Core_execute_block",
|
|
&b1data,
|
|
ExecutionStrategy::NativeWhenPossible,
|
|
).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn construct_genesis_should_work_with_wasm() {
|
|
let mut storage = GenesisConfig::new_simple(
|
|
vec![Keyring::One.to_raw_public().into(), Keyring::Two.to_raw_public().into()], 1000
|
|
).genesis_map();
|
|
let state_root = BlakeTwo256::trie_root(storage.clone().into_iter());
|
|
let block = construct_genesis_block::<Block>(state_root);
|
|
let genesis_hash = block.header.hash();
|
|
storage.extend(additional_storage_with_genesis(&block).into_iter());
|
|
|
|
let backend = InMemory::from(storage);
|
|
let (b1data, _b1hash) = block1(genesis_hash, &backend);
|
|
|
|
let mut overlay = OverlayedChanges::default();
|
|
let _ = execute(
|
|
&backend,
|
|
Some(&InMemoryChangesTrieStorage::new()),
|
|
&mut overlay,
|
|
&executor(),
|
|
"Core_execute_block",
|
|
&b1data,
|
|
ExecutionStrategy::AlwaysWasm,
|
|
).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn construct_genesis_with_bad_transaction_should_panic() {
|
|
let mut storage = GenesisConfig::new_simple(
|
|
vec![Keyring::One.to_raw_public().into(), Keyring::Two.to_raw_public().into()], 68
|
|
).genesis_map();
|
|
let state_root = BlakeTwo256::trie_root(storage.clone().into_iter());
|
|
let block = construct_genesis_block::<Block>(state_root);
|
|
let genesis_hash = block.header.hash();
|
|
storage.extend(additional_storage_with_genesis(&block).into_iter());
|
|
|
|
let backend = InMemory::from(storage);
|
|
let (b1data, _b1hash) = block1(genesis_hash, &backend);
|
|
|
|
let mut overlay = OverlayedChanges::default();
|
|
let _ = execute(
|
|
&backend,
|
|
Some(&InMemoryChangesTrieStorage::new()),
|
|
&mut overlay,
|
|
&Executor::new(),
|
|
"Core_execute_block",
|
|
&b1data,
|
|
ExecutionStrategy::NativeWhenPossible,
|
|
).unwrap();
|
|
}
|
|
}
|