Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
chain-spec: Make chain spec writing deterministic (#10550)
Browse files Browse the repository at this point in the history
* chain-spec: Make chain spec writing deterministic

This switches the chain spec to use `BTreeMap` internally instead of `HashMap`. This ensures that
reading and writing the same chain spec always results in the same file.

* fmt
  • Loading branch information
bkchr authored Dec 23, 2021
1 parent 0444ab7 commit 026ec33
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 9 deletions.
63 changes: 55 additions & 8 deletions client/chain-spec/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use sp_core::{
Bytes,
};
use sp_runtime::BuildStorage;
use std::{borrow::Cow, collections::HashMap, fs::File, path::PathBuf, sync::Arc};
use std::{borrow::Cow, collections::BTreeMap, fs::File, path::PathBuf, sync::Arc};

enum GenesisSource<G> {
File(PathBuf),
Expand Down Expand Up @@ -131,15 +131,15 @@ impl<G: RuntimeGenesis, E> BuildStorage for ChainSpec<G, E> {
}
}

pub type GenesisStorage = HashMap<StorageKey, StorageData>;
pub type GenesisStorage = BTreeMap<StorageKey, StorageData>;

/// Raw storage content for genesis block.
#[derive(Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
#[serde(deny_unknown_fields)]
pub struct RawGenesis {
pub top: GenesisStorage,
pub children_default: HashMap<StorageKey, GenesisStorage>,
pub children_default: BTreeMap<StorageKey, GenesisStorage>,
}

#[derive(Serialize, Deserialize)]
Expand Down Expand Up @@ -180,7 +180,7 @@ struct ClientSpec<E> {
/// The given `wasm_code` will be used to substitute the on-chain wasm code from the given
/// block hash onwards.
#[serde(default)]
code_substitutes: HashMap<String, Bytes>,
code_substitutes: BTreeMap<String, Bytes>,
}

/// A type denoting empty extensions.
Expand Down Expand Up @@ -271,7 +271,7 @@ impl<G, E> ChainSpec<G, E> {
extensions,
consensus_engine: (),
genesis: Default::default(),
code_substitutes: HashMap::new(),
code_substitutes: BTreeMap::new(),
};

ChainSpec { client_spec, genesis: GenesisSource::Factory(Arc::new(constructor)) }
Expand Down Expand Up @@ -416,7 +416,7 @@ where
self.genesis = GenesisSource::Storage(storage);
}

fn code_substitutes(&self) -> std::collections::HashMap<String, Vec<u8>> {
fn code_substitutes(&self) -> std::collections::BTreeMap<String, Vec<u8>> {
self.client_spec
.code_substitutes
.iter()
Expand All @@ -430,7 +430,7 @@ mod tests {
use super::*;

#[derive(Debug, Serialize, Deserialize)]
struct Genesis(HashMap<String, String>);
struct Genesis(BTreeMap<String, String>);

impl BuildStorage for Genesis {
fn assimilate_storage(&self, storage: &mut Storage) -> Result<(), String> {
Expand All @@ -455,12 +455,28 @@ mod tests {
assert_eq!(spec2.chain_type(), ChainType::Live)
}

#[derive(Debug, Serialize, Deserialize)]
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
struct Extension1 {
my_property: String,
}

impl crate::Extension for Extension1 {
type Forks = Option<()>;

fn get<T: 'static>(&self) -> Option<&T> {
None
}

fn get_any(&self, _: std::any::TypeId) -> &dyn std::any::Any {
self
}

fn get_any_mut(&mut self, _: std::any::TypeId) -> &mut dyn std::any::Any {
self
}
}

type TestSpec2 = ChainSpec<Genesis, Extension1>;

#[test]
Expand All @@ -472,4 +488,35 @@ mod tests {

assert_eq!(spec.extensions().my_property, "Test Extension");
}

#[test]
fn chain_spec_raw_output_should_be_deterministic() {
let mut spec = TestSpec2::from_json_bytes(Cow::Owned(
include_bytes!("../res/chain_spec2.json").to_vec(),
))
.unwrap();

let mut storage = spec.build_storage().unwrap();

// Add some extra data, so that storage "sorting" is tested.
let extra_data = &[("random_key", "val"), ("r@nd0m_key", "val"), ("aaarandom_key", "val")];
storage
.top
.extend(extra_data.iter().map(|(k, v)| (k.as_bytes().to_vec(), v.as_bytes().to_vec())));
crate::ChainSpec::set_storage(&mut spec, storage);

let json = spec.as_json(true).unwrap();

// Check multiple times that decoding and encoding the chain spec leads always to the same
// output.
for _ in 0..10 {
assert_eq!(
json,
TestSpec2::from_json_bytes(json.as_bytes().to_vec())
.unwrap()
.as_json(true)
.unwrap()
);
}
}
}
2 changes: 1 addition & 1 deletion client/chain-spec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ pub trait ChainSpec: BuildStorage + Send + Sync {
/// This will be used as storage at genesis.
fn set_storage(&mut self, storage: Storage);
/// Returns code substitutes that should be used for the on chain wasm.
fn code_substitutes(&self) -> std::collections::HashMap<String, Vec<u8>>;
fn code_substitutes(&self) -> std::collections::BTreeMap<String, Vec<u8>>;
}

impl std::fmt::Debug for dyn ChainSpec {
Expand Down

0 comments on commit 026ec33

Please sign in to comment.