File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
common/src/commonMain/kotlin/com/blockstream/common/gdk/data Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
55
6+ ## [ 4.1.5] - 2025-02-04
7+
8+ ### Added
9+ - Enable fee discount for confidential transactions in liquid
10+
611## [ 4.1.4] - 2025-01-28
712
813### Changed
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ data class Transaction constructor(
116116 get() = txType == Type .OUT
117117
118118 val satoshiPolicyAsset: Long
119- get() = satoshi[BTC_POLICY_ASSET ] ? : 0L
119+ get() = satoshi[accountInjected?.network?.policyAssetOrNull ? : BTC_POLICY_ASSET ] ? : 0L
120120
121121 // Lightning on chain address
122122 val onChainAddress
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ android {
4040 defaultConfig {
4141 minSdk = libs.versions.androidMinSdk.get().toInt()
4242 targetSdk = libs.versions.androidTargetSdk.get().toInt()
43- versionCode = 443
44- versionName = " 4.1.4 "
43+ versionCode = 444
44+ versionName = " 4.1.5 "
4545
4646 setProperty(" archivesBaseName" , " BlockstreamGreen-v$versionName " )
4747 proguardFiles(getDefaultProguardFile(" proguard-android-optimize.txt" ), " proguard-rules.pro" )
You can’t perform that action at this time.
0 commit comments