We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bf1557 commit 4e2ebb7Copy full SHA for 4e2ebb7
1 file changed
tasks.py
@@ -46,7 +46,9 @@ async def on_invoice_paid(payment: Payment) -> None:
46
if target.percent > 0:
47
amount_msat = int(payment.amount * target.percent / 100)
48
memo = (
49
- f"Split payment: {target.percent}% for {target.alias or target.wallet}"
+ f"Split payment: {target.percent}% "
50
+ f"for {target.alias or target.wallet}"
51
+ f";{payment.memo};{payment.payment_hash}"
52
)
53
54
if "@" in target.wallet or "LNURL" in target.wallet:
0 commit comments