Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/Data/Models/Rebalance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ public class Rebalance : Entity
/// </summary>
public string? PaymentHashHex { get; set; }

/// <summary>
/// The (amountless) self-invoice bolt11. Created once on the first attempt and reused on
/// every retry, so the whole rebalance settles against a single payment hash. The amount
/// paid is set per attempt on SendPaymentV2, not encoded in the invoice.
/// </summary>
public string? PaymentRequest { get; set; }

/// <summary>
/// Persisted for forensic / proof-of-payment lookup; intentionally not exposed via gRPC.
/// </summary>
Expand Down
Loading
Loading