refactor: extract PaymentSuccessContent

This commit is contained in:
2026-06-13 17:50:17 +02:00
parent e57414de17
commit 2e11cecbeb
5 changed files with 163 additions and 103 deletions
@@ -92,7 +92,8 @@ sealed class SendState {
val amountSats : Long,
val feeSats : Long? = null,
val paymentHash: String,
val pendingRecord: PaymentRecord? = null
val pendingRecord: PaymentRecord? = null,
val lnurl : String? = null
) : SendState()
data class Error(val message: String) : SendState()
}