gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] 01/03: fix cash-out DB fetcher


From: gnunet
Subject: [libeufin] 01/03: fix cash-out DB fetcher
Date: Tue, 23 May 2023 14:09:00 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository libeufin.

commit c2061383dd400528fde8426a0c72a3888c31a555
Author: MS <ms@taler.net>
AuthorDate: Tue May 23 14:07:11 2023 +0200

    fix cash-out DB fetcher
---
 .../tech/libeufin/sandbox/ConversionService.kt     | 24 ++++++++++++++--------
 1 file changed, 15 insertions(+), 9 deletions(-)

diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/ConversionService.kt 
b/sandbox/src/main/kotlin/tech/libeufin/sandbox/ConversionService.kt
index a080dc80..c760a2b1 100644
--- a/sandbox/src/main/kotlin/tech/libeufin/sandbox/ConversionService.kt
+++ b/sandbox/src/main/kotlin/tech/libeufin/sandbox/ConversionService.kt
@@ -107,7 +107,7 @@ fun downloadLoop(block: () -> Unit) {
  * that came from Nexus.  The result is the regional amount
  * that will be wired to the exchange Sandbox account.
  */
-private fun applyBuyinRatioAndFees(
+fun applyBuyinRatioAndFees(
     amount: BigDecimal,
     ratiosAndFees: RatioAndFees
 ): BigDecimal {
@@ -248,21 +248,27 @@ fun buyinMonitor(
     }
 }
 
-// DB query helper.  The List return type (instead of SizedIterable) lets
-// the caller NOT open a transaction block to access the values -- although
-// some operations _on the values_ may be forbidden.
-private fun getUnsubmittedTransactions(bankAccountLabel: String): 
List<BankAccountTransactionEntity> {
+/* DB query helper that fetches the latest cash-out operations that were
+  confirmed in the regional currency.  A cash-out operation is 'confirmed'
+  when the bank account pointed by the parameter 'bankAccountLabel' gets
+  one incoming payment.
+
+  The List return type (instead of SizedIterable) lets the caller NOT open
+  a transaction block to access the values -- although some operations _on
+  the values_ may be forbidden.
+*/
+fun getUnsubmittedTransactions(bankAccountLabel: String): 
List<BankAccountTransactionEntity> {
     return transaction {
         val bankAccount = getBankAccountFromLabel(bankAccountLabel)
         val lowerExclusiveLimit = bankAccount.lastFiatSubmission?.id?.value ?: 0
         BankAccountTransactionEntity.find {
             BankAccountTransactionsTable.id greater lowerExclusiveLimit and (
                 BankAccountTransactionsTable.direction eq "CRDT"
-            )
+            ) and (BankAccountTransactionsTable.account eq bankAccount.id)
         }.sortedBy { it.id }.map { it }
-        // The latest payment must occupy the highest index,
-        // to reliably update the bank account row with the last
-        // submitted cash-out.
+        /*  The latest payment must occupy the highest index,
+        to reliably update the 'lastFiatSubmission' column of
+        the bank account. */
     }
 }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]