You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since c-lightning will start supporting sending of multi-part payments there is no longer a direct relationship between a sendpay call (or sendonion call which also generates listsendpays entries) and the overall payment.
Instead of listsendpays spark should use listpays which aggregates over all sub-payments and reports the correct amounts and the correct status.
The text was updated successfully, but these errors were encountered:
So that multi-part payments are grouped together and not displayed
separately.
This requires an additional RPC call per completed outgoing payment,
until the timestamp field is added to `listpays` (expected in the next
c-lightning release).
This change also uses the `payment_hash` as the unique payment identifier
instead of the payment id, as payment ids are not available in `listpays`.
Resolves#147.
Since c-lightning will start supporting sending of multi-part payments there is no longer a direct relationship between a
sendpay
call (orsendonion
call which also generateslistsendpays
entries) and the overall payment.Instead of
listsendpays
spark should uselistpays
which aggregates over all sub-payments and reports the correct amounts and the correct status.The text was updated successfully, but these errors were encountered: