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

Commit

Permalink
introduce new well known key (#6915)
Browse files Browse the repository at this point in the history
  • Loading branch information
slumber committed Mar 21, 2023
1 parent 6efc49f commit 1c2421f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
17 changes: 17 additions & 0 deletions primitives/src/v4/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,23 @@ pub mod well_known_keys {
pub const ACTIVE_CONFIG: &[u8] =
&hex!["06de3d8a54d27e44a9d5ce189618f22db4b49d95320d9021994c850f25b8e385"];

/// Hash of the committed head data for a given registered para.
///
/// The storage entry stores wrapped `HeadData(Vec<u8>)`.
pub fn para_head(para_id: Id) -> Vec<u8> {
let prefix = hex!["cd710b30bd2eab0352ddcc26417aa1941b3c252fcb29d88eff4f3de5de4476c3"];

para_id.using_encoded(|para_id: &[u8]| {
prefix
.as_ref()
.iter()
.chain(twox_64(para_id).iter())
.chain(para_id.iter())
.cloned()
.collect()
})
}

/// The upward message dispatch queue for the given para id.
///
/// The storage entry stores a tuple of two values:
Expand Down
15 changes: 15 additions & 0 deletions runtime/parachains/src/paras/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1700,6 +1700,21 @@ fn verify_upgrade_restriction_signal_is_externally_accessible() {
});
}

#[test]
fn verify_para_head_is_externally_accessible() {
use primitives::well_known_keys;

let a = ParaId::from(2020);
let expected_head_data = HeadData(vec![0, 1, 2, 3]);

new_test_ext(Default::default()).execute_with(|| {
Heads::<Test>::insert(&a, expected_head_data.clone());
let encoded = sp_io::storage::get(&well_known_keys::para_head(a)).unwrap();
let head_data = HeadData::decode(&mut encoded.as_ref());
assert_eq!(head_data, Ok(expected_head_data));
});
}

#[test]
fn parakind_encodes_decodes_to_bool_scale() {
let chain_kind = ParaKind::Parachain.encode();
Expand Down

0 comments on commit 1c2421f

Please sign in to comment.