Cleanup Processes (#171)

* Clean up the process flow for nodes

* Cleanup some of the node tests to use shared nodes

* Commit dev-genesis
This commit is contained in:
Omar
2025-09-24 05:47:36 +03:00
committed by GitHub
parent 3dda739cef
commit c2ba2cfed6
7 changed files with 356 additions and 343 deletions
+1 -1
View File
@@ -431,7 +431,7 @@ pub struct GenesisConfiguration {
impl GenesisConfiguration {
pub fn genesis(&self) -> anyhow::Result<&Genesis> {
static DEFAULT_GENESIS: LazyLock<Genesis> = LazyLock::new(|| {
let genesis = include_str!("../../../genesis.json");
let genesis = include_str!("../../../dev-genesis.json");
serde_json::from_str(genesis).unwrap()
});