exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit d7bbf934a042b84193fd7092b8632536f3279631
parent 58eb3d95fceb0742bed029944d49b8096ee390c2
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 28 Feb 2022 10:03:55 +0100

make DB generation work with new CS logic

Diffstat:
Msrc/auditor/generate-auditor-basedb.sh | 1+
Msrc/auditor/generate-revoke-basedb.sh | 11++++++++---
2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/auditor/generate-auditor-basedb.sh b/src/auditor/generate-auditor-basedb.sh @@ -120,6 +120,7 @@ TBINPFX=`dirname $TFN` TLIBEXEC=${TBINPFX}/../lib/taler/libexec/ taler-exchange-secmod-eddsa -c $CONF 2> taler-exchange-secmod-eddsa.log & taler-exchange-secmod-rsa -c $CONF 2> taler-exchange-secmod-rsa.log & +taler-exchange-secmod-cs -c $CONF 2> taler-exchange-secmod-cs.log & taler-exchange-httpd -c $CONF 2> taler-exchange-httpd.log & taler-merchant-httpd -c $CONF -L INFO 2> taler-merchant-httpd.log & taler-exchange-wirewatch -c $CONF 2> taler-exchange-wirewatch.log & diff --git a/src/auditor/generate-revoke-basedb.sh b/src/auditor/generate-revoke-basedb.sh @@ -109,7 +109,9 @@ TLIBEXEC=${TBINPFX}/../lib/taler/libexec/ taler-exchange-secmod-eddsa -c $CONF 2> taler-exchange-secmod-eddsa.log & SIGNKEY_HELPER_PID=$! taler-exchange-secmod-rsa -c $CONF 2> taler-exchange-secmod-rsa.log & -DENOM_HELPER_PID=$! +RSA_DENOM_HELPER_PID=$! +taler-exchange-secmod-cs -c $CONF 2> taler-exchange-secmod-cs.log & +CS_DENOM_HELPER_PID=$! taler-exchange-httpd -c $CONF 2> taler-exchange-httpd.log & EXCHANGE_PID=$! taler-merchant-httpd -c $CONF -L INFO 2> taler-merchant-httpd.log & @@ -277,12 +279,15 @@ export TIMETRAVEL="--timetravel=604800000000" echo "Launching exchange 1 week in the future" kill -TERM $EXCHANGE_PID -kill -TERM $DENOM_HELPER_PID +kill -TERM $RSA_DENOM_HELPER_PID +kill -TERM $CS_DENOM_HELPER_PID kill -TERM $SIGNKEY_HELPER_PID taler-exchange-secmod-eddsa $TIMETRAVEL -c $CONF 2> taler-exchange-secmod-eddsa.log & SIGNKEY_HELPER_PID=$! taler-exchange-secmod-rsa $TIMETRAVEL -c $CONF 2> taler-exchange-secmod-rsa.log & -DENOM_HELPER_PID=$! +RSA_DENOM_HELPER_PID=$! +taler-exchange-secmod-cs $TIMETRAVEL -c $CONF 2> taler-exchange-secmod-cs.log & +CS_DENOM_HELPER_PID=$! taler-exchange-httpd $TIMETRAVEL -c $CONF 2> taler-exchange-httpd.log & export EXCHANGE_PID=$!