fix: get balance from websocket instead of separate api call

This commit is contained in:
2026-06-04 12:57:59 +02:00
parent ff50cc1b61
commit 5bdc606d1c
3 changed files with 31 additions and 15 deletions
@@ -259,6 +259,7 @@ data class PaymentDetailResponse(
// ── WebSocket payment message ─────────────────────────────────────────────────
data class WsPaymentMessage(
@SerializedName("wallet_balance") val walletBalance: Long?,
val payment: WsPayment?
)