nit in --help

This commit is contained in:
pm47 2024-03-22 11:04:12 +01:00
parent cb6aff83ac
commit a181fac6be
No known key found for this signature in database
GPG Key ID: E434ED292E85643A
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ plugins {
allprojects {
group = "fr.acinq.lightning"
version = "0.1.0"
version = "0.1.1-SNAPSHOT"
repositories {
// using the local maven repository with Kotlin Multi Platform can lead to build errors that are hard to diagnose.

View File

@ -99,7 +99,7 @@ class Phoenixd : CliktCommand() {
"2m" to 2_000_000.sat,
"5m" to 5_000_000.sat,
"10m" to 10_000_000.sat,
).default(2_000_000.sat)
).default(2_000_000.sat, "2m")
val maxAbsoluteFee by option("--max-absolute-fee", help = "Max absolute fee for on-chain operations. Includes mining fee and service fee for auto-liquidity.")
.int().convert { it.sat }
.restrictTo(5_000.sat..100_000.sat)