Skip to content

Commit

Permalink
Moving resources out
Browse files Browse the repository at this point in the history
  • Loading branch information
balqaasem committed Mar 16, 2024
1 parent 0a2d25e commit a843c2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blockchain/node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ pub fn public_testnet_config() -> Result<ChainSpec, String> {


pub fn live_mainnet_config() -> Result<ChainSpec, String> {
ChainSpec::from_json_bytes(&include_bytes!("../../resources/chain_spec_mainnet_raw.json")[..])
ChainSpec::from_json_bytes(&include_bytes!("../../../resources/chain_spec_mainnet_raw.json")[..])
}

pub fn live_testnet_config() -> Result<ChainSpec, String> {
ChainSpec::from_json_bytes(&include_bytes!("../../resources/chain_spec_testnet_raw.json")[..])
ChainSpec::from_json_bytes(&include_bytes!("../../../resources/chain_spec_testnet_raw.json")[..])
}

pub fn mainnet_config() -> Result<ChainSpec, String> {
Expand Down

0 comments on commit a843c2c

Please sign in to comment.