-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change(virto-node/kreivo-runtime): configurations for releasing in paseo/kusama * change(zombienet): local configurations for spawning zombienet * change(zombienet): update zombienet specs * change(node): add initial collator / improve readibility of accounts from addresses * change: adjust chainspec and zombienet settings * fix(pallet-payments): lint * change(node/chain-spec): embed live chainspec for kreivo in Paseo
- Loading branch information
Showing
15 changed files
with
390 additions
and
311 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
use super::*; | ||
|
||
#[cfg(not(feature = "paseo"))] | ||
pub fn chain_spec() -> ChainSpec { | ||
ChainSpec::from_json_bytes(include_bytes!("./kreivo_kusama_chainspec.json").as_slice()).unwrap() | ||
} | ||
|
||
#[cfg(feature = "paseo")] | ||
use sp_core::crypto::Ss58Codec; | ||
|
||
#[cfg(feature = "paseo")] | ||
pub fn chain_spec() -> ChainSpec { | ||
ChainSpec::from_json_bytes(include_bytes!("./kreivo_paseador_chainspec.json").as_slice()).unwrap() | ||
} |
Oops, something went wrong.