Skip to content

Commit

Permalink
Merge pull request #878 from UniqueNetwork/release-v937052
Browse files Browse the repository at this point in the history
Release v937052-1
  • Loading branch information
uandysmith authored Feb 10, 2023
2 parents d6894f5 + 4fdda01 commit 7b6dc6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
'runtime/tests',
'runtime/unique',
]
package.version = "0.9.36"
package.version = "0.9.37"
resolver = "2"

[profile.release]
Expand Down
11 changes: 5 additions & 6 deletions node/cli/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,14 @@ impl RuntimeIdentification for Box<dyn sc_service::ChainSpec> {
}

#[cfg(feature = "quartz-runtime")]
if self.id().starts_with("quartz") || self.id().starts_with("qtz") {
if self.id().starts_with("quartz")
|| self.id().starts_with("qtz")
|| self.id().starts_with("sapphire")
{
return RuntimeId::Quartz;
}

if self.id().starts_with("opal")
|| self.id().starts_with("sapphire")
|| self.id() == "dev"
|| self.id() == "local_testnet"
{
if self.id().starts_with("opal") || self.id() == "dev" || self.id() == "local_testnet" {
return RuntimeId::Opal;
}

Expand Down

0 comments on commit 7b6dc6f

Please sign in to comment.