Commit 71d8d71 1 parent 890d5b4 commit 71d8d71 Copy full SHA for 71d8d71
File tree 3 files changed +8
-3
lines changed
common/src/commonMain/kotlin/com/blockstream/common/gdk/data
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.
3
3
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
5
5
6
+ ## [ 4.1.5] - 2025-02-04
7
+
8
+ ### Added
9
+ - Enable fee discount for confidential transactions in liquid
10
+
6
11
## [ 4.1.4] - 2025-01-28
7
12
8
13
### Changed
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ data class Transaction constructor(
116
116
get() = txType == Type .OUT
117
117
118
118
val satoshiPolicyAsset: Long
119
- get() = satoshi[BTC_POLICY_ASSET ] ? : 0L
119
+ get() = satoshi[accountInjected?.network?.policyAssetOrNull ? : BTC_POLICY_ASSET ] ? : 0L
120
120
121
121
// Lightning on chain address
122
122
val onChainAddress
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ android {
40
40
defaultConfig {
41
41
minSdk = libs.versions.androidMinSdk.get().toInt()
42
42
targetSdk = libs.versions.androidTargetSdk.get().toInt()
43
- versionCode = 443
44
- versionName = " 4.1.4 "
43
+ versionCode = 444
44
+ versionName = " 4.1.5 "
45
45
46
46
setProperty(" archivesBaseName" , " BlockstreamGreen-v$versionName " )
47
47
proguardFiles(getDefaultProguardFile(" proguard-android-optimize.txt" ), " proguard-rules.pro" )
You can’t perform that action at this time.
0 commit comments