fix #7241
This commit is contained in:
parent
393ae7f9a3
commit
71a42d2be8
@ -1 +1 @@
|
|||||||
1651516353
|
1655064974
|
||||||
|
@ -113,7 +113,7 @@ currency = TESTKUDOS
|
|||||||
[merchant-exchange-default]
|
[merchant-exchange-default]
|
||||||
CURRENCY = TESTKUDOS
|
CURRENCY = TESTKUDOS
|
||||||
EXCHANGE_BASE_URL = http://localhost:8081/
|
EXCHANGE_BASE_URL = http://localhost:8081/
|
||||||
MASTER_KEY = EQ73PAPVK53KV6QPBDXPD0DTAWR2TPTQQFFTT9AYSB73ZNYW0AD0
|
MASTER_KEY = QRZFN2H2C1FANGHV76FBN11ESTK72VFCG3BVSRZA6PHJNT9WG3SG
|
||||||
|
|
||||||
[merchant-account-merchant]
|
[merchant-account-merchant]
|
||||||
ACTIVE_default = YES
|
ACTIVE_default = YES
|
||||||
@ -157,7 +157,7 @@ CONFIG = postgres:///auditor-basedb
|
|||||||
[exchange]
|
[exchange]
|
||||||
LOOKAHEAD_SIGN = 32 weeks 1 day
|
LOOKAHEAD_SIGN = 32 weeks 1 day
|
||||||
SIGNKEY_DURATION = 4 weeks
|
SIGNKEY_DURATION = 4 weeks
|
||||||
MASTER_PUBLIC_KEY = EQ73PAPVK53KV6QPBDXPD0DTAWR2TPTQQFFTT9AYSB73ZNYW0AD0
|
MASTER_PUBLIC_KEY = QRZFN2H2C1FANGHV76FBN11ESTK72VFCG3BVSRZA6PHJNT9WG3SG
|
||||||
SIGNKEY_LEGAL_DURATION = 4 weeks
|
SIGNKEY_LEGAL_DURATION = 4 weeks
|
||||||
UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
|
UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
|
||||||
|
|
||||||
@ -175,7 +175,7 @@ DATABASE = postgres:///auditor-basedb
|
|||||||
CONFIG = postgres:///auditor-basedb
|
CONFIG = postgres:///auditor-basedb
|
||||||
|
|
||||||
[auditor]
|
[auditor]
|
||||||
PUBLIC_KEY = AAJ7CB4EV8MRZVCAR57B549SX1W7SPR50RFQ1ZV0GKZQMTJB4Z5G
|
PUBLIC_KEY = X25D3Y3K4SJZHP3KPP48R3PM9ZSYCEVEZK1SBXAMCRTTGN6CV32G
|
||||||
TINY_AMOUNT = TESTKUDOS:0.01
|
TINY_AMOUNT = TESTKUDOS:0.01
|
||||||
BASE_URL = http://localhost:8083/
|
BASE_URL = http://localhost:8083/
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
NYBEPNN9Z5C6ZKM4BTD7TWRD9EBE6TE2YE12STA6GJHBP4HVQCYG
|
QRZFN2H2C1FANGHV76FBN11ESTK72VFCG3BVSRZA6PHJNT9WG3SG
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1 +1 @@
|
|||||||
1651516459
|
1655066138
|
||||||
|
@ -1 +1 @@
|
|||||||
9M29VNDWV6DZPGE5DXHM8Z0A41CDC6JTTE2J85C1C9V165TGPASG
|
RJD4G3ERAWDZRH8W4PMNKB9X75HB3N1A3MFKMHBH4FTAAD71GA90
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -2770,6 +2770,86 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
" ORDER BY extension_details_serial_id DESC"
|
" ORDER BY extension_details_serial_id DESC"
|
||||||
" LIMIT 1;",
|
" LIMIT 1;",
|
||||||
0),
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_purse_requests",
|
||||||
|
"SELECT"
|
||||||
|
" purse_requests_serial_id AS serial"
|
||||||
|
" FROM purse_requests"
|
||||||
|
" ORDER BY purse_requests_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_purse_merges",
|
||||||
|
"SELECT"
|
||||||
|
" purse_merge_request_serial_id AS serial"
|
||||||
|
" FROM purse_merges"
|
||||||
|
" ORDER BY purse_merge_request_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_purse_deposits",
|
||||||
|
"SELECT"
|
||||||
|
" purse_deposit_serial_id AS serial"
|
||||||
|
" FROM purse_deposits"
|
||||||
|
" ORDER BY purse_deposit_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_account_merges",
|
||||||
|
"SELECT"
|
||||||
|
" account_merge_request_serial_id AS serial"
|
||||||
|
" FROM account_merges"
|
||||||
|
" ORDER BY account_merge_request_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_history_requests",
|
||||||
|
"SELECT"
|
||||||
|
" history_request_serial_id AS serial"
|
||||||
|
" FROM history_requests"
|
||||||
|
" ORDER BY history_request_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_close_requests",
|
||||||
|
"SELECT"
|
||||||
|
" close_request_serial_id AS serial"
|
||||||
|
" FROM close_requests"
|
||||||
|
" ORDER BY close_request_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_wads_out",
|
||||||
|
"SELECT"
|
||||||
|
" wad_out_serial_id AS serial"
|
||||||
|
" FROM wads_out"
|
||||||
|
" ORDER BY wad_out_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_wads_out_entries",
|
||||||
|
"SELECT"
|
||||||
|
" wad_out_entry_serial_id AS serial"
|
||||||
|
" FROM wad_out_entries"
|
||||||
|
" ORDER BY wad_out_entry_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_wads_in",
|
||||||
|
"SELECT"
|
||||||
|
" wad_in_serial_id AS serial"
|
||||||
|
" FROM wads_in"
|
||||||
|
" ORDER BY wad_in_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
|
GNUNET_PQ_make_prepare (
|
||||||
|
"select_serial_by_table_wads_in_entries",
|
||||||
|
"SELECT"
|
||||||
|
" wad_in_entry_serial_id AS serial"
|
||||||
|
" FROM wad_in_entries"
|
||||||
|
" ORDER BY wad_in_entry_serial_id DESC"
|
||||||
|
" LIMIT 1;",
|
||||||
|
0),
|
||||||
/* For postgres_lookup_records_by_table */
|
/* For postgres_lookup_records_by_table */
|
||||||
GNUNET_PQ_make_prepare (
|
GNUNET_PQ_make_prepare (
|
||||||
"select_above_serial_by_table_denominations",
|
"select_above_serial_by_table_denominations",
|
||||||
@ -2823,8 +2903,6 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
"SELECT"
|
"SELECT"
|
||||||
" reserve_uuid AS serial"
|
" reserve_uuid AS serial"
|
||||||
",reserve_pub"
|
",reserve_pub"
|
||||||
",current_balance_val"
|
|
||||||
",current_balance_frac"
|
|
||||||
",expiration_date"
|
",expiration_date"
|
||||||
",gc_date"
|
",gc_date"
|
||||||
" FROM reserves"
|
" FROM reserves"
|
||||||
@ -2933,8 +3011,6 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
",coin_pub"
|
",coin_pub"
|
||||||
",denom_sig"
|
",denom_sig"
|
||||||
",denominations_serial"
|
",denominations_serial"
|
||||||
",remaining_val"
|
|
||||||
",remaining_frac"
|
|
||||||
" FROM known_coins"
|
" FROM known_coins"
|
||||||
" WHERE known_coin_id > $1"
|
" WHERE known_coin_id > $1"
|
||||||
" ORDER BY known_coin_id ASC;",
|
" ORDER BY known_coin_id ASC;",
|
||||||
@ -3321,13 +3397,11 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
"INSERT INTO reserves"
|
"INSERT INTO reserves"
|
||||||
"(reserve_uuid"
|
"(reserve_uuid"
|
||||||
",reserve_pub"
|
",reserve_pub"
|
||||||
",current_balance_val"
|
|
||||||
",current_balance_frac"
|
|
||||||
",expiration_date"
|
",expiration_date"
|
||||||
",gc_date"
|
",gc_date"
|
||||||
") VALUES "
|
") VALUES "
|
||||||
"($1, $2, $3, $4, $5, $6);",
|
"($1, $2, $3, $4);",
|
||||||
6),
|
4),
|
||||||
GNUNET_PQ_make_prepare (
|
GNUNET_PQ_make_prepare (
|
||||||
"insert_into_table_reserves_in",
|
"insert_into_table_reserves_in",
|
||||||
"INSERT INTO reserves_in"
|
"INSERT INTO reserves_in"
|
||||||
@ -3422,11 +3496,9 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
",coin_pub"
|
",coin_pub"
|
||||||
",denom_sig"
|
",denom_sig"
|
||||||
",denominations_serial"
|
",denominations_serial"
|
||||||
",remaining_val"
|
|
||||||
",remaining_frac"
|
|
||||||
") VALUES "
|
") VALUES "
|
||||||
"($1, $2, $3, $4, $5, $6);",
|
"($1, $2, $3, $4);",
|
||||||
6),
|
4),
|
||||||
GNUNET_PQ_make_prepare (
|
GNUNET_PQ_make_prepare (
|
||||||
"insert_into_table_refresh_commitments",
|
"insert_into_table_refresh_commitments",
|
||||||
"INSERT INTO refresh_commitments"
|
"INSERT INTO refresh_commitments"
|
||||||
@ -3483,13 +3555,12 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
",coin_sig"
|
",coin_sig"
|
||||||
",wire_salt"
|
",wire_salt"
|
||||||
",wire_target_h_payto"
|
",wire_target_h_payto"
|
||||||
",done"
|
|
||||||
",extension_blocked"
|
",extension_blocked"
|
||||||
",extension_details_serial_id"
|
",extension_details_serial_id"
|
||||||
") VALUES "
|
") VALUES "
|
||||||
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
||||||
" $11, $12, $13, $14, $15, $16, $17, $18);",
|
" $11, $12, $13, $14, $15, $16, $17);",
|
||||||
18),
|
17),
|
||||||
GNUNET_PQ_make_prepare (
|
GNUNET_PQ_make_prepare (
|
||||||
"insert_into_table_refunds",
|
"insert_into_table_refunds",
|
||||||
"INSERT INTO refunds"
|
"INSERT INTO refunds"
|
||||||
@ -13055,6 +13126,36 @@ postgres_lookup_serial_by_table (void *cls,
|
|||||||
case TALER_EXCHANGEDB_RT_EXTENSION_DETAILS:
|
case TALER_EXCHANGEDB_RT_EXTENSION_DETAILS:
|
||||||
statement = "select_serial_by_table_extension_details";
|
statement = "select_serial_by_table_extension_details";
|
||||||
break;
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_PURSE_REQUESTS:
|
||||||
|
statement = "select_serial_by_table_purse_requests";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_PURSE_MERGES:
|
||||||
|
statement = "select_serial_by_table_purse_merges";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_PURSE_DEPOSITS:
|
||||||
|
statement = "select_serial_by_table_purse_deposits";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_ACCOUNT_MERGES:
|
||||||
|
statement = "select_serial_by_table_account_merges";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_HISTORY_REQUESTS:
|
||||||
|
statement = "select_serial_by_table_history_requests";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_CLOSE_REQUESTS:
|
||||||
|
statement = "select_serial_by_table_close_requests";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_WADS_OUT:
|
||||||
|
statement = "select_serial_by_table_wads_out";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_WADS_OUT_ENTRIES:
|
||||||
|
statement = "select_serial_by_table_wads_out_entries";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_WADS_IN:
|
||||||
|
statement = "select_serial_by_table_wads_in";
|
||||||
|
break;
|
||||||
|
case TALER_EXCHANGEDB_RT_WADS_IN_ENTRIES:
|
||||||
|
statement = "select_serial_by_table_wads_in_entries";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
GNUNET_break (0);
|
GNUNET_break (0);
|
||||||
return GNUNET_DB_STATUS_HARD_ERROR;
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
||||||
|
Loading…
Reference in New Issue
Block a user