git.delta.rocks / unique-network / refs/commits / 04b3d2e4897e

difftreelog

quartz identity

Igor Kozyrev2021-12-13parent: #e7d0544.patch.diff
in: master

2 files changed

modifiednode/cli/src/command.rsdiffbeforeafterboth
--- a/node/cli/src/command.rs
+++ b/node/cli/src/command.rs
@@ -51,7 +51,7 @@
 impl SubstrateCli for Cli {
 	// TODO use args
 	fn impl_name() -> String {
-		"Opal Node".into()
+		"Quartz Node".into()
 	}
 
 	fn impl_version() -> String {
@@ -60,7 +60,7 @@
 	// TODO use args
 	fn description() -> String {
 		format!(
-			"Opal Node\n\nThe command-line arguments provided first will be \
+			"Quartz Node\n\nThe command-line arguments provided first will be \
 		passed to the parachain node, while the arguments provided after -- will be passed \
 		to the relaychain node.\n\n\
 		{} [parachain-args] -- [relaychain-args]",
@@ -93,7 +93,7 @@
 impl SubstrateCli for RelayChainCli {
 	// TODO use args
 	fn impl_name() -> String {
-		"Opal Node".into()
+		"Quartz Node".into()
 	}
 
 	fn impl_version() -> String {
@@ -101,7 +101,7 @@
 	}
 	// TODO use args
 	fn description() -> String {
-		"Opal Node\n\nThe command-line arguments provided first will be \
+		"Quartz Node\n\nThe command-line arguments provided first will be \
 		passed to the parachain node, while the arguments provided after -- will be passed \
 		to the relaychain node.\n\n\
 		parachain-collator [parachain-args] -- [relaychain-args]"
modifiedruntime/src/lib.rsdiffbeforeafterboth
144144
145/// This runtime version.145/// This runtime version.
146pub const VERSION: RuntimeVersion = RuntimeVersion {146pub const VERSION: RuntimeVersion = RuntimeVersion {
147 spec_name: create_runtime_str!("opal"),147 spec_name: create_runtime_str!("quartz"),
148 impl_name: create_runtime_str!("opal"),148 impl_name: create_runtime_str!("quartz"),
149 authoring_version: 1,149 authoring_version: 1,
150 spec_version: 914000,150 spec_version: 914000,
151 impl_version: 1,151 impl_version: 1,
233 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)233 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)
234 .build_or_panic();234 .build_or_panic();
235 pub const Version: RuntimeVersion = VERSION;235 pub const Version: RuntimeVersion = VERSION;
236 pub const SS58Prefix: u8 = 42;236 pub const SS58Prefix: u8 = 255;
237}237}
238238
239parameter_types! {239parameter_types! {