commonMain.fr.acinq.lightning.blockchain.fee.ConstantFeeEstimator.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightning-kmp-jvm Show documentation
Show all versions of lightning-kmp-jvm Show documentation
A Kotlin Multiplatform implementation of the Lightning Network
package fr.acinq.lightning.blockchain.fee
import fr.acinq.lightning.utils.sat
data class ConstantFeeEstimator(val currentFeerate: FeeratePerKw = FeeratePerKw(750.sat)) : FeeEstimator {
override fun getFeerate(target: Int): FeeratePerKw = currentFeerate
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy