Fixed gateway upgrade command argument description

This commit is contained in:
Jędrzej Stuczyński
2021-07-21 14:29:47 +01:00
parent 3bbf959086
commit addb721d66
+2 -2
View File
@@ -55,12 +55,12 @@ pub fn command_args<'a, 'b>() -> App<'a, 'b> {
)
.arg(Arg::with_name("listening-address")
.long("listening-address")
.help("REQUIRED FOR 0.Y.Z UPGRADE. Specifies the listening address of this gateway")
.help("REQUIRED FOR 0.11.0 UPGRADE. Specifies the listening address of this gateway")
.takes_value(true)
)
.arg(Arg::with_name("announce-address")
.long("announce-address")
.help("OPTIONAL FOR 0.Y.Z UPGRADE. Specifies the announce address of this gateway. If not provided, it will be set to the same value as listening address")
.help("OPTIONAL FOR 0.11.0 UPGRADE. Specifies the announce address of this gateway. If not provided, it will be set to the same value as listening address")
.takes_value(true)
)
}