aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-02-19 21:46:15 +0100
committerChristian Grothoff <christian@grothoff.org>2023-02-19 21:46:15 +0100
commit13d90bb1a3962272d82da47aa5e193103a2014ae (patch)
tree51d90336e0b750a8fdc3c5bc135f7ed746e62b4c /src/exchangedb
parente2fe36a0be198bc2e674368b1d32fc8891494a3b (diff)
downloadexchange-13d90bb1a3962272d82da47aa5e193103a2014ae.tar.xz
on idempotent deposit, just skip most of the transaction
Diffstat (limited to 'src/exchangedb')
-rw-r--r--src/exchangedb/exchange_do_purse_deposit.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/exchangedb/exchange_do_purse_deposit.sql b/src/exchangedb/exchange_do_purse_deposit.sql
index 7ea426b77..d710e9002 100644
--- a/src/exchangedb/exchange_do_purse_deposit.sql
+++ b/src/exchangedb/exchange_do_purse_deposit.sql
@@ -67,6 +67,7 @@ IF NOT FOUND
THEN
-- Idempotency check: check if coin_sig is the same,
-- if so, success, otherwise conflict!
+
PERFORM
FROM exchange.purse_deposits
WHERE coin_pub = in_coin_pub
@@ -79,6 +80,12 @@ THEN
out_late=FALSE;
out_conflict=TRUE;
RETURN;
+ ELSE
+ -- Deposit exists, do not count for balance. Allow.
+ out_late=FALSE;
+ out_balance_ok=TRUE;
+ out_conflict=FALSE;
+ RETURN;
END IF;
END IF;