gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated: prefer named parameters


From: gnunet
Subject: [libeufin] branch master updated: prefer named parameters
Date: Thu, 25 Jun 2020 13:27:23 +0200

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

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 501866d  prefer named parameters
501866d is described below

commit 501866d656f33814b63289054ba4de5b19cad0f1
Author: MS <ms@taler.net>
AuthorDate: Thu Jun 25 13:27:18 2020 +0200

    prefer named parameters
---
 nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt 
b/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt
index 7cb9d8c..2f218e8 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/server/NexusServer.kt
@@ -332,10 +332,10 @@ fun serverMain(dbName: String, host: String) {
                     NexusBankAccountEntity.all().forEach {
                         bankAccounts.accounts.add(
                             BankAccount(
-                                it.accountHolder,
-                                it.iban,
-                                it.bankCode,
-                                it.id.value
+                                holder = it.accountHolder,
+                                iban = it.iban,
+                                bic = it.bankCode,
+                                account = it.id.value
                             )
                         )
                     }

-- 
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]