Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: touch up doc string
Fintan Halpenny committed 8 months ago
commit 1a9cda9134caac8736d7c7a7c574b3e40502534f
parent 2c57b63fa7cf3c6dcf1e29377822ecf105edbff5
1 file changed +6 -5
modified crates/radicle/src/node/config.rs
@@ -459,11 +459,12 @@ pub struct Config {
    /// Extra fields that aren't supported.
    #[serde(flatten, skip_serializing)]
    pub extra: json::Map<String, json::Value>,
-
    /// Path to a file containing an Ed25519 secret key, in OpenSSH format,
-
    /// i.e. with the `-----BEGIN OPENSSH PRIVATE KEY-----` header.
-
    /// The corresponding public key will be used as Node ID.
-
    /// A decryption password cannot be configured, but passed at runtime
-
    /// via the environment variable `RAD_PASSPHRASE`.
+
    /// Path to a file containing an Ed25519 secret key, in OpenSSH format, i.e.
+
    /// with the `-----BEGIN OPENSSH PRIVATE KEY-----` header. The corresponding
+
    /// public key will be used as the Node ID.
+
    ///
+
    /// A decryption password cannot be configured, but passed at runtime via
+
    /// the environment variable `RAD_PASSPHRASE`.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<std::path::PathBuf>,
}