commit 26834c7bde96d53ebc6a21ac18d375e3c09b2579
parent d89e2c0127dc86b95be58b5481628dbcda4252c2
Author: MS <ms@taler.net>
Date: Thu, 3 Nov 2022 15:00:29 +0100
fix option name
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt
@@ -142,7 +142,7 @@ class Config : CliktCommand(
"--show",
help = "Only show values, other options will be ignored."
).flag("--no-show", default = false)
- private val captchaUrl by option(
+ private val captchaUrlOption by option(
"--captcha-url", help = "Needed for browser wallets."
)
private val currencyOption by option("--currency").default("EUR")
@@ -195,7 +195,7 @@ class Config : CliktCommand(
allowRegistrations = allowRegistrationsOption
name = nameArgument
this.withSignupBonus = withSignupBonusOption
- captchaUrl = captchaUrl
+ captchaUrl = captchaUrlOption
}
BankAccountEntity.new {
iban = getIban()