mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 07:01:05 +00:00
chore: move genesis block builder to chain-spec crate. (#13427)
* chore: move genesis block builder to block builder crate. * add missing file * chore: move genesis block builder to sc-chain-spec * Update client/chain-spec/src/genesis.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update test-utils/runtime/src/genesismap.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update test-utils/runtime/client/src/lib.rs * fix warnings * fix warnings --------- Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
@@ -23,7 +23,7 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "7.0.0", path = "../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
||||
sp-runtime = { version = "7.0.0", path = "../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.13.0", path = "../../primitives/state-machine" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-state-machine = { version = "0.13.0", path = "../../primitives/state-machine" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
@@ -39,9 +39,8 @@ use sp_runtime::{
|
||||
Digest,
|
||||
};
|
||||
|
||||
pub use sp_block_builder::BlockBuilder as BlockBuilderApi;
|
||||
|
||||
use sc_client_api::backend;
|
||||
pub use sp_block_builder::BlockBuilder as BlockBuilderApi;
|
||||
|
||||
/// Used as parameter to [`BlockBuilderProvider`] to express if proof recording should be enabled.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user