Cleanup, fix typos (#299)

* Fix typo in PaymentSucceeded event name

* Remove fixed todo

* Organize imports

* Fix log typos

* Re-generate flutter bindings

* Re-generate RN bindings

* Fix "Unhandled msg" logs for WS pings

* Hide ureq debug logs, showing raw HTTP headers for Boltz calls
This commit is contained in:
ok300
2024-06-07 04:53:14 +00:00
committed by GitHub
parent 2928e0fa58
commit 7276346a5f
23 changed files with 100 additions and 93 deletions

View File

@@ -738,7 +738,7 @@ final class wire_cst_LiquidSdkEvent_PaymentRefundPending extends ffi.Struct {
external ffi.Pointer<wire_cst_payment> details;
}
final class wire_cst_LiquidSdkEvent_PaymentSucceed extends ffi.Struct {
final class wire_cst_LiquidSdkEvent_PaymentSucceeded extends ffi.Struct {
external ffi.Pointer<wire_cst_payment> details;
}
@@ -755,7 +755,7 @@ final class LiquidSdkEventKind extends ffi.Union {
external wire_cst_LiquidSdkEvent_PaymentRefundPending PaymentRefundPending;
external wire_cst_LiquidSdkEvent_PaymentSucceed PaymentSucceed;
external wire_cst_LiquidSdkEvent_PaymentSucceeded PaymentSucceeded;
external wire_cst_LiquidSdkEvent_PaymentWaitingConfirmation PaymentWaitingConfirmation;
}