summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2023-10-12 13:27:22 +0200
committerMS <ms@taler.net>2023-10-12 13:27:22 +0200
commit42f98b64cdee41a233dbd11c44040fbe54828834 (patch)
treef432f3606cc4b47b4171639dcc3416cbda13ea72
parent0d4a7de17b41ca8eb9a45d266ed54cd66c5694a8 (diff)
downloadlibeufin-42f98b64cdee41a233dbd11c44040fbe54828834.tar.gz
libeufin-42f98b64cdee41a233dbd11c44040fbe54828834.tar.bz2
libeufin-42f98b64cdee41a233dbd11c44040fbe54828834.zip
comment
-rw-r--r--nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt
index bee9263f..a8185a9c 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt
@@ -255,7 +255,9 @@ fun loadPrivateKeysFromDisk(location: String): ClientPrivateKeysFile? {
}
/**
- *
+ * Obtains the client private keys, regardless of them being
+ * created for the first time, or read from an existing file
+ * on disk.
*
* @param location path to the file that contains the keys.
* @return true if the operation succeeds, false otherwise.
@@ -329,6 +331,7 @@ class EbicsSetup: CliktCommand() {
logger.error("Private keys preparation failed.")
exitProcess(1)
}
+
}
}