1
0
Fork 0
mirror of https://github.com/ACINQ/eclair.git synced 2025-02-21 22:11:46 +01:00

fixup! make wallet resolution independent of wake-up config

This commit is contained in:
pm47 2025-02-19 10:56:32 +01:00
parent d32c269781
commit c09979e357
No known key found for this signature in database
GPG key ID: E434ED292E85643A

View file

@ -301,7 +301,7 @@ class NodeRelay private(nodeParams: NodeParams,
}
walletNodeId_opt match {
case Some(walletNodeId) if nodeParams.peerWakeUpConfig.enabled => attemptWakeUp(upstream, walletNodeId, recipient, nextPayload, nextPacket_opt)
case _ => relay(upstream, recipient, None, None, nextPayload, nextPacket_opt)
case _ => relay(upstream, recipient, walletNodeId_opt, None, nextPayload, nextPacket_opt)
}
}
}