From 9d3336f8f7eca7210ed76d9f2bbdfa185cdce009 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 1 May 2020 18:40:08 +0200 Subject: v8 bump --- src/exchange/taler-exchange-httpd_keystate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/exchange/taler-exchange-httpd_keystate.c') diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c index 152d2dad5..c14b85d9b 100644 --- a/src/exchange/taler-exchange-httpd_keystate.c +++ b/src/exchange/taler-exchange-httpd_keystate.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014--2019 Taler Systems SA + Copyright (C) 2014--2020 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software @@ -44,7 +44,7 @@ * #TALER_PROTOCOL_CURRENT and #TALER_PROTOCOL_AGE in * exchange_api_handle.c! */ -#define EXCHANGE_PROTOCOL_VERSION "7:0:0" +#define EXCHANGE_PROTOCOL_VERSION "8:0:0" /** -- cgit v1.2.3 From af28c9b449b145fd365d416f8ba8cf6fdab6bfcf Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 19 May 2020 02:23:57 +0200 Subject: fix auditor drop --- src/auditordb/drop0001.sql | 4 ++-- src/exchange/taler-exchange-httpd_keystate.c | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'src/exchange/taler-exchange-httpd_keystate.c') diff --git a/src/auditordb/drop0001.sql b/src/auditordb/drop0001.sql index 80f953e32..8e42c8094 100644 --- a/src/auditordb/drop0001.sql +++ b/src/auditordb/drop0001.sql @@ -43,8 +43,8 @@ DROP TABLE IF EXISTS auditor_denominations CASCADE; DROP TABLE IF EXISTS deposit_confirmations CASCADE; DROP TABLE IF EXISTS auditor_exchanges CASCADE; --- Drop versioning (0000.sql) -DROP SCHEMA IF EXISTS _v CASCADE; +-- Drop versioning (auditor-0001.sql) +SELECT _v.unregister_patch('auditor-0001'); -- And we're out of here... COMMIT; diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c index c14b85d9b..fbb5da356 100644 --- a/src/exchange/taler-exchange-httpd_keystate.c +++ b/src/exchange/taler-exchange-httpd_keystate.c @@ -801,7 +801,7 @@ reload_keys_denom_iter (void *cls, handle_signal (SIGTERM); return GNUNET_SYSERR; } - + GNUNET_assert (NULL != dki->denom_priv.rsa_private_key); GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Adding denomination key `%s' (%s) to active set\n", alias, @@ -1660,6 +1660,9 @@ reload_public_denoms_cb ( GNUNET_h2s (&issue->properties.denom_hash)); return; } + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Loaded denomination key %s from DB, no private key (hopefully revoked!)\n", + GNUNET_h2s (&issue->properties.denom_hash)); /* we can assert here as we checked for duplicates just above */ GNUNET_assert (GNUNET_OK == ret); } -- cgit v1.2.3