@@ -23,15 +23,15 @@ use crate::{
23
23
fn load_spec ( id : & str ) -> std:: result:: Result < Box < dyn ChainSpec > , String > {
24
24
Ok ( match id {
25
25
"dev" => Box :: new ( chain_spec:: development_config ( ) ) ,
26
- "template -rococo" => Box :: new ( chain_spec:: local_testnet_config ( ) ) ,
26
+ "sugondat -rococo" => Box :: new ( chain_spec:: local_testnet_config ( ) ) ,
27
27
"" | "local" => Box :: new ( chain_spec:: local_testnet_config ( ) ) ,
28
28
path => Box :: new ( chain_spec:: ChainSpec :: from_json_file ( std:: path:: PathBuf :: from ( path) ) ?) ,
29
29
} )
30
30
}
31
31
32
32
impl SubstrateCli for Cli {
33
33
fn impl_name ( ) -> String {
34
- "Parachain Collator Template " . into ( )
34
+ "Sugondat Node " . into ( )
35
35
}
36
36
37
37
fn impl_version ( ) -> String {
@@ -40,7 +40,7 @@ impl SubstrateCli for Cli {
40
40
41
41
fn description ( ) -> String {
42
42
format ! (
43
- "Parachain Collator Template \n \n The command-line arguments provided first will be \
43
+ "Sugondat Node \n \n The command-line arguments provided first will be \
44
44
passed to the parachain node, while the arguments provided after -- will be passed \
45
45
to the relay chain node.\n \n \
46
46
{} <parachain-args> -- <relay-chain-args>",
@@ -53,11 +53,11 @@ impl SubstrateCli for Cli {
53
53
}
54
54
55
55
fn support_url ( ) -> String {
56
- "https://github.com/paritytech/cumulus/issues/new " . into ( )
56
+ "https://github.com/thrumdev/sugondat " . into ( )
57
57
}
58
58
59
59
fn copyright_start_year ( ) -> i32 {
60
- 2020
60
+ 2023
61
61
}
62
62
63
63
fn load_spec ( & self , id : & str ) -> std:: result:: Result < Box < dyn sc_service:: ChainSpec > , String > {
@@ -67,7 +67,7 @@ impl SubstrateCli for Cli {
67
67
68
68
impl SubstrateCli for RelayChainCli {
69
69
fn impl_name ( ) -> String {
70
- "Parachain Collator Template " . into ( )
70
+ "Sugondat Node " . into ( )
71
71
}
72
72
73
73
fn impl_version ( ) -> String {
@@ -76,7 +76,7 @@ impl SubstrateCli for RelayChainCli {
76
76
77
77
fn description ( ) -> String {
78
78
format ! (
79
- "Parachain Collator Template \n \n The command-line arguments provided first will be \
79
+ "Sugondat Node \n \n The command-line arguments provided first will be \
80
80
passed to the parachain node, while the arguments provided after -- will be passed \
81
81
to the relay chain node.\n \n \
82
82
{} <parachain-args> -- <relay-chain-args>",
@@ -89,11 +89,11 @@ impl SubstrateCli for RelayChainCli {
89
89
}
90
90
91
91
fn support_url ( ) -> String {
92
- "https://github.com/paritytech/cumulus/issues/new " . into ( )
92
+ "https://github.com/thrumdev/sugondat " . into ( )
93
93
}
94
94
95
95
fn copyright_start_year ( ) -> i32 {
96
- 2020
96
+ 2023
97
97
}
98
98
99
99
fn load_spec ( & self , id : & str ) -> std:: result:: Result < Box < dyn sc_service:: ChainSpec > , String > {
0 commit comments