Skip to content

Commit 737a762

Browse files
committed
quartz identity
1 parent 77bd60e commit 737a762

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

node/cli/src/command.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fn load_spec(id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, St
5151
impl SubstrateCli for Cli {
5252
// TODO use args
5353
fn impl_name() -> String {
54-
"Opal Node".into()
54+
"Quartz Node".into()
5555
}
5656

5757
fn impl_version() -> String {
@@ -60,7 +60,7 @@ impl SubstrateCli for Cli {
6060
// TODO use args
6161
fn description() -> String {
6262
format!(
63-
"Opal Node\n\nThe command-line arguments provided first will be \
63+
"Quartz Node\n\nThe command-line arguments provided first will be \
6464
passed to the parachain node, while the arguments provided after -- will be passed \
6565
to the relaychain node.\n\n\
6666
{} [parachain-args] -- [relaychain-args]",
@@ -93,15 +93,15 @@ impl SubstrateCli for Cli {
9393
impl SubstrateCli for RelayChainCli {
9494
// TODO use args
9595
fn impl_name() -> String {
96-
"Opal Node".into()
96+
"Quartz Node".into()
9797
}
9898

9999
fn impl_version() -> String {
100100
env!("SUBSTRATE_CLI_IMPL_VERSION").into()
101101
}
102102
// TODO use args
103103
fn description() -> String {
104-
"Opal Node\n\nThe command-line arguments provided first will be \
104+
"Quartz Node\n\nThe command-line arguments provided first will be \
105105
passed to the parachain node, while the arguments provided after -- will be passed \
106106
to the relaychain node.\n\n\
107107
parachain-collator [parachain-args] -- [relaychain-args]"

runtime/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ pub mod opaque {
144144

145145
/// This runtime version.
146146
pub const VERSION: RuntimeVersion = RuntimeVersion {
147-
spec_name: create_runtime_str!("opal"),
148-
impl_name: create_runtime_str!("opal"),
147+
spec_name: create_runtime_str!("quartz"),
148+
impl_name: create_runtime_str!("quartz"),
149149
authoring_version: 1,
150150
spec_version: 913010,
151151
impl_version: 1,
@@ -233,7 +233,7 @@ parameter_types! {
233233
.avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)
234234
.build_or_panic();
235235
pub const Version: RuntimeVersion = VERSION;
236-
pub const SS58Prefix: u8 = 42;
236+
pub const SS58Prefix: u8 = 255;
237237
}
238238

239239
parameter_types! {

0 commit comments

Comments
 (0)