Skip to content

Commit 71d8d71

Browse files
domegabriangelix
authored andcommitted
Increment version to 4.1.5
1 parent 890d5b4 commit 71d8d71

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
The 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

common/src/commonMain/kotlin/com/blockstream/common/gdk/data/Transaction.kt

+1-1
Original file line numberDiff line numberDiff 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

green/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)