libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit a0224f355ca2bc4e6e8aeef671acfd76a9623580
parent 154e1d6631b2427eaf4225a3819c428cf0104cee
Author: ms <ms@taler.net>
Date:   Sat, 23 Oct 2021 08:54:04 +0200

fix option name

Diffstat:
Msandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt @@ -203,7 +203,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 demobankArg by option("--demobank", help = "Which Demobank books this transaction").default("default") private val amount by argument(help = "Amount, in the \$currency:x.y format") private val subjectArg by argument(name = "subject", help = "Payment's subject")