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 2f0122f commit 83d3c6eCopy full SHA for 83d3c6e
app/src/main/java/to/bitkit/services/CoreService.kt
@@ -645,18 +645,16 @@ class ActivityService(
645
}
646
647
var resolvedChannelId = channelId
648
- var isTransfer = existingOnchain?.isTransfer ?: false
649
650
// Check if this transaction is a channel transfer
651
- if (resolvedChannelId == null || !isTransfer) {
+ if (resolvedChannelId == null) {
652
val foundChannelId = findChannelForTransaction(
653
txid = kind.txid,
654
direction = payment.direction,
655
transactionDetails = transactionDetails
656
)
657
if (foundChannelId != null) {
658
resolvedChannelId = foundChannelId
659
- isTransfer = true
660
661
662
0 commit comments