summaryrefslogtreecommitdiff
path: root/sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt
diff options
context:
space:
mode:
authorMS <ms@taler.net>2021-01-18 17:36:10 +0100
committerMS <ms@taler.net>2021-01-18 17:36:10 +0100
commit5c1397963a939dbe260226b5076636346c20a308 (patch)
tree6cb5f08765df07a50eba3f34e7014cf71708a84f /sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt
parente943ef765147028b88564ff1b5c1c7883843cf97 (diff)
downloadlibeufin-5c1397963a939dbe260226b5076636346c20a308.tar.gz
libeufin-5c1397963a939dbe260226b5076636346c20a308.tar.bz2
libeufin-5c1397963a939dbe260226b5076636346c20a308.zip
Remove avoidable MsgId value per transaction (sandbox)
Diffstat (limited to 'sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt')
-rw-r--r--sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt3
1 files changed, 1 insertions, 2 deletions
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt
index 46780f01..c93db81c 100644
--- a/sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt
+++ b/sandbox/src/main/kotlin/tech/libeufin/sandbox/bankAccount.kt
@@ -45,8 +45,7 @@ fun historyForAccount(iban: String): List<RawPayment> {
// uid = "${it[pmtInfId]}-${it[msgId]}"
uid = "${it[BankAccountTransactionsTable.pmtInfId]}",
direction = it[BankAccountTransactionsTable.direction],
- pmtInfId = it[BankAccountTransactionsTable.pmtInfId],
- msgId = it[BankAccountTransactionsTable.msgId]
+ pmtInfId = it[BankAccountTransactionsTable.pmtInfId]
)
)
}