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 f88c9f4 commit df9da6fCopy full SHA for df9da6f
app/src/main/java/to/bitkit/ui/screens/wallets/activity/ActivityDetailScreen.kt
@@ -606,9 +606,9 @@ private fun ActivityDetailContent(
606
if (hasCPFP) {
607
true
608
} else if (activity.txType == PaymentType.SENT) {
609
- val anyBoostTxEvicted = activity.boostTxIds.any { boostTxDoesExist[it] == false }
610
- val thisActivityWasEvicted = !activity.doesExist
611
- anyBoostTxEvicted || thisActivityWasEvicted
+ val isAnyBoostTxEvicted = activity.boostTxIds.any { boostTxDoesExist[it] == false }
+ val isActivityEvicted = !activity.doesExist
+ isAnyBoostTxEvicted || isActivityEvicted
612
} else {
613
false
614
}
0 commit comments