File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
app/src/main/java/to/bitkit Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import kotlinx.serialization.Serializable
66data class BalanceState (
77 val totalOnchainSats : ULong = 0uL ,
88 val totalLightningSats : ULong = 0uL ,
9- val maxSendLightningSats : ULong = 0uL ,
9+ val maxSendLightningSats : ULong = 0uL , // Without account routing fees
1010 val maxSendOnchainSats : ULong = 0uL ,
1111 val balanceInTransferToSavings : ULong = 0uL ,
1212 val balanceInTransferToSpending : ULong = 0uL ,
Original file line number Diff line number Diff line change @@ -475,6 +475,7 @@ class AppViewModel @Inject constructor(
475475 SendEvent .EstimateMaxRoutingFee -> viewModelScope.launch {
476476 estimateMaxAmountRoutingFee()
477477 }
478+
478479 SendEvent .PayConfirmed -> onConfirmPay()
479480 SendEvent .ClearPayConfirmation -> _sendUiState .update { s -> s.copy(shouldConfirmPay = false ) }
480481 SendEvent .BackToAmount -> setSendEffect(SendEffect .PopBack (SendRoute .Amount ))
You can’t perform that action at this time.
0 commit comments