mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-22 16:34:23 +01:00
Update flutter bindings
This commit is contained in:
@@ -12,19 +12,13 @@ part 'error.freezed.dart';
|
||||
sealed class PaymentError with _$PaymentError implements FrbException {
|
||||
const PaymentError._();
|
||||
|
||||
const factory PaymentError.amountOutOfRange() = PaymentError_AmountOutOfRange;
|
||||
const factory PaymentError.invalidOrExpiredFees() =
|
||||
PaymentError_InvalidOrExpiredFees;
|
||||
const factory PaymentError.insufficientFunds() =
|
||||
PaymentError_InsufficientFunds;
|
||||
const factory PaymentError.alreadyClaimed() = PaymentError_AlreadyClaimed;
|
||||
const factory PaymentError.refunded({
|
||||
required String err,
|
||||
required String txid,
|
||||
}) = PaymentError_Refunded;
|
||||
const factory PaymentError.amountOutOfRange() = PaymentError_AmountOutOfRange;
|
||||
const factory PaymentError.generic({
|
||||
required String err,
|
||||
}) = PaymentError_Generic;
|
||||
const factory PaymentError.invalidOrExpiredFees() = PaymentError_InvalidOrExpiredFees;
|
||||
const factory PaymentError.insufficientFunds() = PaymentError_InsufficientFunds;
|
||||
const factory PaymentError.invalidInvoice() = PaymentError_InvalidInvoice;
|
||||
const factory PaymentError.invalidPreimage() = PaymentError_InvalidPreimage;
|
||||
const factory PaymentError.lwkError({
|
||||
@@ -32,6 +26,10 @@ sealed class PaymentError with _$PaymentError implements FrbException {
|
||||
}) = PaymentError_LwkError;
|
||||
const factory PaymentError.pairsNotFound() = PaymentError_PairsNotFound;
|
||||
const factory PaymentError.persistError() = PaymentError_PersistError;
|
||||
const factory PaymentError.refunded({
|
||||
required String err,
|
||||
required String txid,
|
||||
}) = PaymentError_Refunded;
|
||||
const factory PaymentError.sendError({
|
||||
required String err,
|
||||
}) = PaymentError_SendError;
|
||||
|
||||
Reference in New Issue
Block a user