handle case where purse was already deleted on merge

This commit is contained in:
Christian Grothoff 2022-12-28 12:58:30 +01:00
parent 1e7e0058e8
commit f864d66d93
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 26 additions and 9 deletions

View File

@ -62,6 +62,10 @@ THEN
RETURN;
END IF;
-- Delete contract associated with purse, if it exists.
DELETE FROM contracts
WHERE purse_pub=in_purse_pub;
-- store purse decision
INSERT INTO purse_decision
(purse_pub

View File

@ -42,6 +42,7 @@ DECLARE
my_in_reserve_quota BOOLEAN;
BEGIN
IF in_partner_url IS NULL
THEN
my_partner_serial_id=NULL;
@ -124,6 +125,27 @@ THEN
out_conflict=FALSE;
RETURN;
END IF;
-- Remember how this purse was finished. This will conflict
-- if the purse was already decided previously.
INSERT INTO purse_decision
(purse_pub
,action_timestamp
,refunded)
VALUES
(in_purse_pub
,in_merge_timestamp
,FALSE)
ON CONFLICT DO NOTHING;
IF NOT FOUND
THEN
-- Purse was already decided (possibly deleted or merged differently).
out_conflict=TRUE;
RETURN;
END IF;
out_conflict=FALSE;
@ -138,15 +160,6 @@ INSERT INTO reserves
,in_expiration_date)
ON CONFLICT DO NOTHING;
-- Remember how this purse was finished.
INSERT INTO purse_decision
(purse_pub
,action_timestamp
,refunded)
VALUES
(in_purse_pub
,in_merge_timestamp
,FALSE);
IF (my_in_reserve_quota)
THEN