summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-23Bump required version of libmicrohttpd to 0.9.71Thien-Thi Nguyen
2022-03-22-typo fixedÖzgür Kesim
2022-03-20-update API for latest exchange APIChristian Grothoff
2022-03-20-minor code cleanupChristian Grothoff
2022-03-19[build int] Use ‘MHD_VERSION_AT_LEAST’Thien-Thi Nguyen
* configure.ac (microhttpd): Delete shell var. (MHD_start_daemon): Delete AC_CHECK_LIB. (MHD_VERSION_AT_LEAST): New macro call.
2022-03-19Add autoconf macro to check for minimum libmicrohttpd versionThien-Thi Nguyen
* m4/mhd.m4: New.
2022-03-18-fix offline callsChristian Grothoff
2022-03-15-ignore exchange-secmod-csÖzgür Kesim
2022-03-15[age restriction] age verification implemented, but not tested.Özgür Kesim
order/pay now verifies the minimum_age of an order for each coin, using the age restriction API from the exchange-lib. Note, tests are not implemented yet.
2022-03-10URI now contains h_payto, not the serial idChristian Grothoff
2022-03-10-add wad fee in testsChristian Grothoff
2022-03-10fix #7190: handle new wad fees properly in merchantChristian Grothoff
2022-03-07fix FTBFSFlorian Dold
2022-03-01fix #7148Christian Grothoff
2022-03-01-also start CS serviceChristian Grothoff
2022-02-21-big renaming of structs for consistent naming with P suffixChristian Grothoff
2022-02-19Add m4 to compare version numbersThien-Thi Nguyen
* m4/ax_compare_version.m4: New file (serial 13).
2022-02-19Update PostgreSQL m4Thien-Thi Nguyen
* m4/ax_lib_postgresql.m4: Update to serial 22.
2022-02-19prevent orders with an infinite (never) wire_deadline from being created; ↵Christian Grothoff
fixes #7158
2022-02-17-migrate to Postgress 11: use BIGINT GENERATED BY DEFAULT AS IDENTITY ↵Christian Grothoff
instead of BIGSERIAL
2022-02-17-post Oec cleanupsChristian Grothoff
2022-02-17-fix FTBFSChristian Grothoff
2022-02-17-fix FTBFSChristian Grothoff
2022-02-17fix exchange API breakageFlorian Dold
2022-02-13-fix uninit nonceChristian Grothoff
2022-02-13-migrate merchant tests to support RSA and CSChristian Grothoff
2022-02-13-add cipher=RSA option toget basic tests to pass againChristian Grothoff
2022-02-11-fix CS-pickup logic (in theory, untested)Christian Grothoff
2022-02-11-fix FTBFS, but with logic holesChristian Grothoff
2022-02-07-renameChristian Grothoff
2022-02-02-fix assert, call shutdown logicChristian Grothoff
2022-02-02fix various cases where shutdown did not work if long pollers were present ↵Christian Grothoff
(#7166)
2022-01-24print software versionSebastian
2022-01-19issue #7148Sebastian
2022-01-18add minimum age to productsChristian Grothoff
2021-12-25-do not generate non-obivously bogus signature in testChristian Grothoff
2021-12-23followup to 2021-12-19, "introduce new data type for the post-orders hash ↵Thien-Thi Nguyen
used for idempotency checks, as well as the hash and salt for authentication checks"
2021-12-23followup to 2021-12-19, "-introduce new types for tip identifiers and tip ↵Thien-Thi Nguyen
pickups"
2021-12-19introduce new data type for the post-orders hash used for idempotency ↵Christian Grothoff
checks, as well as the hash and salt for authentication checks
2021-12-19-introduce new types for tip identifiers and tip pickupsChristian Grothoff
2021-12-17-protocol bumpChristian Grothoff
2021-12-15compatChristian Grothoff
2021-12-14migration to protocol v11Christian Grothoff
2021-12-11fix #7123Christian Grothoff
2021-12-09-fix FTBFSChristian Grothoff
2021-12-08-more loggingChristian Grothoff
2021-12-08-do not log tokensChristian Grothoff
2021-12-08-insensitve is neededChristian Grothoff
2021-12-08auto-prefix -a password overrides with RFC 8959 prefixChristian Grothoff
2021-12-06fixing: unable to use default instance if it was not the first createdSebastian
if the first instance created is not the default instance then the next access to the default instance is not possible since: * default_auth is set to null in taler-merchant-httpd_private-post-instances:463 * TMH_lookup_instance will not find default instance in taler-merchant-httpd:1153 * auth_ok will be always false in line 1385 - multihashmap_size > 0 - default_auth == NULL - hc->instance == NULL disabling any instance creation, even default instance until restart restarting the service will load the default_auth again allowing the access to the default instance again