ghost-node/primitives/machine/src/lib.rs
Uncle Stretch 66719626bb
inital commit, which is clearly not initial
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2024-10-03 15:38:52 +03:00

7 lines
277 B
Rust

lazy_static::lazy_static! {
pub static ref GHOST_NODE_REFERENCE_HARDWARE: sc_sysinfo::Requirements = {
let raw = include_bytes!("ghost_node_hardware.json").as_slice();
serde_json::from_slice(raw).expect("Hardcoded machine data is known good; qed")
};
}