From a181fac6be432d1f48229623291e073045158ef2 Mon Sep 17 00:00:00 2001 From: pm47 Date: Fri, 22 Mar 2024 11:04:12 +0100 Subject: [PATCH] nit in --help --- build.gradle.kts | 2 +- src/commonMain/kotlin/fr/acinq/lightning/bin/Main.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 04804e3..ab93ea9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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. diff --git a/src/commonMain/kotlin/fr/acinq/lightning/bin/Main.kt b/src/commonMain/kotlin/fr/acinq/lightning/bin/Main.kt index a121259..faaff69 100644 --- a/src/commonMain/kotlin/fr/acinq/lightning/bin/Main.kt +++ b/src/commonMain/kotlin/fr/acinq/lightning/bin/Main.kt @@ -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)