Skip to content

Commit

Permalink
rename chainspec
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Oct 6, 2023
1 parent 2e1daa8 commit c5834ca
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 146 deletions.
73 changes: 0 additions & 73 deletions parachain/chainspec/gargantuan-raw.json

This file was deleted.

126 changes: 54 additions & 72 deletions parachain/chainspec/gargantuan.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion parachain/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn load_spec(id: &str) -> std::result::Result<Box<dyn ChainSpec>, String> {
Box::new(chain_spec::development_config(id))
},
"gargantuan" => Box::new(chain_spec::ChainSpec::from_json_bytes(
include_bytes!("../../chainspec/gargantuan-raw.json").to_vec(),
include_bytes!("../../chainspec/gargantuan.json").to_vec(),
)?),
"" | "local" => Box::new(chain_spec::local_testnet_config()),
path => Box::new(chain_spec::ChainSpec::from_json_file(std::path::PathBuf::from(path))?),
Expand Down

0 comments on commit c5834ca

Please sign in to comment.