File tree Expand file tree Collapse file tree
api/src/main/java/com/getcode/network/client
app/src/main/java/com/getcode/view/main/home Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -195,6 +195,9 @@ suspend fun Client.receiveRemoteSuspend(giftCard: GiftCardAccount): KinAmount =
195195 )
196196
197197 balanceController.fetchBalanceSuspend()
198+ transactionRepository.fetchPaymentHistoryDelta(organizer.ownerKeyPair)
199+ .ignoreElement()
200+ .subscribe()
198201
199202 return @withContext kinAmount
200203 }
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ class HomeViewModel @Inject constructor(
295295 Completable .concatArray(
296296 balanceController.fetchBalance(),
297297 client.fetchLimits(isForce = true ),
298+ client.fetchPaymentHistoryDelta(owner).ignoreElement()
298299 )
299300 }
300301 .subscribe({
@@ -818,6 +819,7 @@ class HomeViewModel @Inject constructor(
818819 Completable .concatArray(
819820 balanceController.fetchBalance(),
820821 client.fetchLimits(isForce = true ),
822+ client.fetchPaymentHistoryDelta(organizer.ownerKeyPair).ignoreElement()
821823 )
822824 }
823825 .subscribe({ }, {
You can’t perform that action at this time.
0 commit comments