summaryrefslogtreecommitdiff
path: root/src/auditor
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2022-09-06 15:25:42 -0400
committerThien-Thi Nguyen <ttn@gnuvola.org>2022-09-06 15:25:42 -0400
commitdbc4e5c5dfc13c5f5e4b48f32557392299f3d343 (patch)
treea2b43e850feb07b9913d0ce1f07be14453530031 /src/auditor
parent57a53a016ba50fdada1f6441ce8fc222abfb607f (diff)
downloadexchange-dbc4e5c5dfc13c5f5e4b48f32557392299f3d343.tar.gz
exchange-dbc4e5c5dfc13c5f5e4b48f32557392299f3d343.tar.bz2
exchange-dbc4e5c5dfc13c5f5e4b48f32557392299f3d343.zip
add 9th IN parameter to ‘exchange.exchange_do_purse_deposit’
* src/auditor/auditor-basedb.sql (exchange.exchange_do_purse_deposit): Add ‘in_reserve_expiration bigint’ as last non-OUT parameter.
Diffstat (limited to 'src/auditor')
-rw-r--r--src/auditor/auditor-basedb.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditor/auditor-basedb.sql b/src/auditor/auditor-basedb.sql
index d7fad1b0c..d59d2e50f 100644
--- a/src/auditor/auditor-basedb.sql
+++ b/src/auditor/auditor-basedb.sql
@@ -3741,7 +3741,7 @@ END $$;
-- Name: exchange_do_purse_deposit(bigint, bytea, bigint, integer, bytea, bytea, bigint, integer); Type: FUNCTION; Schema: exchange; Owner: -
--
-CREATE FUNCTION exchange.exchange_do_purse_deposit(in_partner_id bigint, in_purse_pub bytea, in_amount_with_fee_val bigint, in_amount_with_fee_frac integer, in_coin_pub bytea, in_coin_sig bytea, in_amount_without_fee_val bigint, in_amount_without_fee_frac integer, OUT out_balance_ok boolean, OUT out_conflict boolean) RETURNS record
+CREATE FUNCTION exchange.exchange_do_purse_deposit(in_partner_id bigint, in_purse_pub bytea, in_amount_with_fee_val bigint, in_amount_with_fee_frac integer, in_coin_pub bytea, in_coin_sig bytea, in_amount_without_fee_val bigint, in_amount_without_fee_frac integer, in_reserve_expiration bigint, OUT out_balance_ok boolean, OUT out_conflict boolean) RETURNS record
LANGUAGE plpgsql
AS $$
DECLARE