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
Changes from cba7e7e are reverted. If Phoenix needs to serialize objects
from eclair-kmp, it should handle that itself. Eclair-kmp does not need to
know about it.
ChannelClosingType hierarchy is also simplified.
@Serializable object InvalidPaymentAmount : FinalFailure() { overridefuntoString(): String="payment amount must be positive" }
19
-
@Serializable object InvalidPaymentId : FinalFailure() { overridefuntoString(): String="payment ID must be unique" }
20
-
@Serializable object NoAvailableChannels : FinalFailure() { overridefuntoString(): String="no channels available to send payment" }
21
-
@Serializable object InsufficientBalance : FinalFailure() { overridefuntoString(): String="not enough funds in wallet to afford payment" }
22
-
@Serializable object NoRouteToRecipient : FinalFailure() { overridefuntoString(): String="unable to route payment to recipient" }
23
-
@Serializable object RecipientUnreachable : FinalFailure() { overridefuntoString(): String="the recipient was offline or did not have enough liquidity to receive the payment" }
object InvalidPaymentAmount : FinalFailure() { overridefuntoString(): String="payment amount must be positive" }
17
+
object InvalidPaymentId : FinalFailure() { overridefuntoString(): String="payment ID must be unique" }
18
+
object NoAvailableChannels : FinalFailure() { overridefuntoString(): String="no channels available to send payment" }
19
+
object InsufficientBalance : FinalFailure() { overridefuntoString(): String="not enough funds in wallet to afford payment" }
20
+
object NoRouteToRecipient : FinalFailure() { overridefuntoString(): String="unable to route payment to recipient" }
21
+
object RecipientUnreachable : FinalFailure() { overridefuntoString(): String="the recipient was offline or did not have enough liquidity to receive the payment" }
0 commit comments