Skip to content
Snippets Groups Projects
Verified Commit 39bb0ce2 authored by Michal Kucharczyk's avatar Michal Kucharczyk
Browse files

GenesisBuilder: new function

parent 097308e3
No related merge requests found
......@@ -325,7 +325,7 @@ mod chain_spec;
mod extension;
mod genesis_block;
mod genesis_config_builder;
mod json_patch;
pub mod json_patch;
pub use self::{
chain_spec::{
......
......@@ -41,6 +41,7 @@ sp_api::decl_runtime_apis! {
/// This function instantiates the default `GenesisConfig` struct for the runtime and serializes it into a JSON
/// blob. It returns a `Vec<u8>` containing the JSON representation of the default `GenesisConfig`.
fn create_default_config() -> sp_std::vec::Vec<u8>;
fn create_default_config2(params: sp_std::vec::Vec<u8>) -> sp_std::vec::Vec<u8>;
/// Build `GenesisConfig` from a JSON blob not using any defaults and store it in the storage.
///
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment