We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a9744 commit 1144d4dCopy full SHA for 1144d4d
app/src/main/java/to/bitkit/ui/screens/wallets/activity/ActivityDetailScreen.kt
@@ -606,7 +606,9 @@ private fun ActivityDetailContent(
606
if (hasCPFP) {
607
true
608
} else if (activity.txType == PaymentType.SENT) {
609
- activity.boostTxIds.any { boostTxDoesExist[it] == false }
+ val anyBoostTxEvicted = activity.boostTxIds.any { boostTxDoesExist[it] == false }
610
+ val thisActivityWasEvicted = !activity.doesExist
611
+ anyBoostTxEvicted || thisActivityWasEvicted
612
} else {
613
false
614
}
0 commit comments