Skip to content

Commit df9da6f

Browse files
committed
chore: lint
1 parent f88c9f4 commit df9da6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/activity/ActivityDetailScreen.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -606,9 +606,9 @@ private fun ActivityDetailContent(
606606
if (hasCPFP) {
607607
true
608608
} else if (activity.txType == PaymentType.SENT) {
609-
val anyBoostTxEvicted = activity.boostTxIds.any { boostTxDoesExist[it] == false }
610-
val thisActivityWasEvicted = !activity.doesExist
611-
anyBoostTxEvicted || thisActivityWasEvicted
609+
val isAnyBoostTxEvicted = activity.boostTxIds.any { boostTxDoesExist[it] == false }
610+
val isActivityEvicted = !activity.doesExist
611+
isAnyBoostTxEvicted || isActivityEvicted
612612
} else {
613613
false
614614
}

0 commit comments

Comments
 (0)