commit eb6783ad4f0d222be93b53cf94693a23eeaf61a6
parent 597f1946b0d140e13e8fb67025f529bd9be36c24
Author: Thien-Thi Nguyen <ttn@gnu.org>
Date: Mon, 24 Jan 2022 05:27:03 -0500
spell it "CUR:X.Y" in the --help output
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cli/bin/libeufin-cli b/cli/bin/libeufin-cli
@@ -1211,7 +1211,7 @@ def sandbox_demobank(ctx):
)
@click.option(
"--amount",
- help="Amount to transfer, in the $currency:X.Y format.",
+ help="Amount to transfer, in the CUR:X.Y format.",
required=True
)
@click.pass_obj
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt
@@ -234,7 +234,7 @@ class MakeTransaction : CliktCommand("Wire-transfer money between Sandbox bank a
private val creditAccount by option(help = "Label of the bank account receiving the payment").required()
private val debitAccount by option(help = "Label of the bank account issuing the payment").required()
private val demobankArg by option("--demobank", help = "Which Demobank books this transaction").default("default")
- private val amount by argument("AMOUNT", "Amount, in the \$currency:x.y format")
+ private val amount by argument("AMOUNT", "Amount, in the CUR:X.Y format")
private val subjectArg by argument("SUBJECT", "Payment's subject")
override fun run() {